From: Daniel Stenberg Date: Tue, 15 Aug 2017 22:03:54 +0000 (+0200) Subject: m4/curl-compilers.m4: use proper quotes around string, not backticks X-Git-Tag: curl-7_56_0~242 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b5cc7dd360c983875a451bd29ab9e68db78624c0;p=curl m4/curl-compilers.m4: use proper quotes around string, not backticks ... when setting clang version to assume 3.7 Caused a lot of "integer expression expected" warnings by configure. --- diff --git a/m4/curl-compilers.m4 b/m4/curl-compilers.m4 index 3c87efa09..7705e637f 100644 --- a/m4/curl-compilers.m4 +++ b/m4/curl-compilers.m4 @@ -89,7 +89,7 @@ AC_DEFUN([CURL_CHECK_COMPILER_CLANG], [ if test -z "$clangver"; then if echo $fullclangver | grep "Apple LLVM version " >/dev/null; then dnl Starting with XCode 7 / clang 3.7, Apple clang won't tell its upstream version - clangver=`3.7` + clangver="3.7" else clangver=`echo $fullclangver | "$SED" 's/.*version \(@<:@0-9@:>@*\.@<:@0-9@:>@*\).*/\1/'` fi