Browse Source

Fixed curl-config when no features are enabled.

darwin-pinnedpubkey
Dan Fandrich 15 years ago
parent
commit
9813cea1d0
  1. 4
      curl-config.in

4
curl-config.in

@ -80,8 +80,8 @@ while test $# -gt 0; do @@ -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…
Cancel
Save