diff options
author | Yang Tse <yangsita@gmail.com> | 2008-10-09 13:11:10 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-10-09 13:11:10 +0000 |
commit | 36d971b025eb46387583c340b88880df2ad4280e (patch) | |
tree | 7e41e4334e142813b31c333c2271ae294c5f1808 /m4 | |
parent | 0afae2f16bb13e6c97f16e2dc6ad1ef5f5cb26fe (diff) | |
download | c-ares-36d971b025eb46387583c340b88880df2ad4280e.tar.gz c-ares-36d971b025eb46387583c340b88880df2ad4280e.tar.bz2 c-ares-36d971b025eb46387583c340b88880df2ad4280e.zip |
remove extra whitespace from string in SGI C check
Diffstat (limited to 'm4')
-rw-r--r-- | m4/cares-compilers.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/cares-compilers.m4 b/m4/cares-compilers.m4 index 8d0c069..eaf0cc2 100644 --- a/m4/cares-compilers.m4 +++ b/m4/cares-compilers.m4 @@ -224,12 +224,12 @@ AC_DEFUN([CARES_CHECK_COMPILER_SGI], [ CURL_CHECK_DEF([_COMPILER_VERSION], [], [silent]) CURL_CHECK_DEF([__GNUC__], [], [silent]) CURL_CHECK_DEF([__sgi], [], [silent]) - if test "$curl_cv_have_def___GNUC__ " = "no"; then + if test "$curl_cv_have_def___GNUC__" = "no"; then if test "$curl_cv_have_def__SGI_COMPILER_VERSION" = "yes"; then compiler_id="SGIC" fi - if test "$curl_cv_have_def__COMPILER_VERSION " = "yes" && - test "$curl_cv_have_def___sgi " = "yes"; then + if test "$curl_cv_have_def__COMPILER_VERSION" = "yes" && + test "$curl_cv_have_def___sgi" = "yes"; then compiler_id="SGIC" fi fi |