From 3a7fae97dc994e8a1ac5f2253527c7b76c86e8be Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 20 Mar 2013 12:53:53 +0100 Subject: curl: sync with 7.27.0-7 from F18 --- 0003-curl-7.27.0-382429e7.patch | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 0003-curl-7.27.0-382429e7.patch (limited to '0003-curl-7.27.0-382429e7.patch') diff --git a/0003-curl-7.27.0-382429e7.patch b/0003-curl-7.27.0-382429e7.patch new file mode 100644 index 0000000..f25fe71 --- /dev/null +++ b/0003-curl-7.27.0-382429e7.patch @@ -0,0 +1,32 @@ +From 382429e7601de68564f08a88cc867dbcd6e2556a Mon Sep 17 00:00:00 2001 +From: Daniel Stenberg +Date: Tue, 7 Aug 2012 14:13:09 +0200 +Subject: [PATCH] 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 +--- + curl-config.in | 4 ++-- + 1 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/curl-config.in b/curl-config.in +index a3ca8b5..731761c 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 + ;; + +-- +1.7.1 + -- cgit