From: Kamil Dudka Date: Tue, 24 Feb 2015 17:58:55 +0000 (+0100) Subject: curl-config.in: eliminate double quotes around CURL_CA_BUNDLE X-Git-Tag: curl-7_42_0~222 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e47b8306db14ed1ccd66f774bded2d59602d2c88;p=thirdparty%2Fcurl.git curl-config.in: eliminate double quotes around CURL_CA_BUNDLE Otherwise it expands to: echo ""/etc/pki/tls/certs/ca-bundle.crt"" Detected by ShellCheck: curl-config:74:16: warning: The double quotes around this do nothing. Remove or escape them. [SC2140] --- diff --git a/curl-config.in b/curl-config.in index 1ddf4c2c7f..9398722416 100644 --- a/curl-config.in +++ b/curl-config.in @@ -71,7 +71,7 @@ while test $# -gt 0; do ;; --ca) - echo "@CURL_CA_BUNDLE@" + echo @CURL_CA_BUNDLE@ ;; --cc)