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
1 changed files with 2 additions and 2 deletions

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