diff options
author | Daniel Stenberg <daniel@haxx.se> | 2012-08-07 14:13:09 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2012-08-07 14:13:09 +0200 |
commit | 382429e7601de68564f08a88cc867dbcd6e2556a (patch) | |
tree | fa49866f4f68d92fc2fdf75f02483ed864f86f41 /curl-config.in | |
parent | 0b08491f83d1e6b8676ac2d9c6db89c734125c1c (diff) | |
download | curl-382429e7601de68564f08a88cc867dbcd6e2556a.tar.gz |
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
Diffstat (limited to 'curl-config.in')
-rw-r--r-- | curl-config.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/curl-config.in b/curl-config.in index a3ca8b55f..731761c3d 100644 --- a/curl-config.in +++ b/curl-config.in @@ -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 ;; |