1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

Fixed curl-config when no features are enabled.

This commit is contained in:
Dan Fandrich 2008-09-03 19:10:48 +00:00
parent 304537c24f
commit 9813cea1d0

View File

@ -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
;;