Skip to content
Snippets Groups Projects
Commit 9813cea1 authored by Dan Fandrich's avatar Dan Fandrich
Browse files

Fixed curl-config when no features are enabled.

parent 304537c2
No related branches found
No related tags found
No related merge requests found
......@@ -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
;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment