Commit 9813cea1 authored by Dan Fandrich's avatar Dan Fandrich
Browse files

Fixed curl-config when no features are enabled.

parent 304537c2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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
	;;