Skip to content
Snippets Groups Projects
Commit 382429e7 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

curl-config: parentheses fix

Braces, not parentheses, should be used for shell variable names.

Bug: http://curl.haxx.se/bug/view.cgi?id=3551460
Reported by: Edward Sheldrake
parent 0b08491f
No related branches found
No related tags found
No related merge requests found
......@@ -135,9 +135,9 @@ while test $# -gt 0; do
CPPFLAG_CURL_STATICLIB=""
fi
if test "X@includedir@" = "X/usr/include"; then
echo "$(CPPFLAG_CURL_STATICLIB)"
echo "$CPPFLAG_CURL_STATICLIB"
else
echo "$(CPPFLAG_CURL_STATICLIB)-I@includedir@"
echo "${CPPFLAG_CURL_STATICLIB}-I@includedir@"
fi
;;
......
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