mirror of
https://github.com/curl/curl.git
synced 2026-04-14 22:11:45 +03:00
Fixed curl-config when no features are enabled.
This commit is contained in:
parent
304537c24f
commit
9813cea1d0
1 changed files with 2 additions and 2 deletions
|
|
@ -80,8 +80,8 @@ while test $# -gt 0; do
|
|||
;;
|
||||
|
||||
--feature|--features)
|
||||
for feature in @SUPPORT_FEATURES@; do
|
||||
echo "$feature"
|
||||
for feature in @SUPPORT_FEATURES@ ""; do
|
||||
test -n "$feature" && echo "$feature"
|
||||
done
|
||||
;;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue