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 | 43c2cf4edb497e325df35e7c997d36e7a6875f47 (patch) | |
tree | cf0ecd8a1037c8228e702a28ca58555299bab8da | |
parent | f6d80d66a230e40c42cd4e7a1867bcc482f5def8 (diff) |
remove extra whitespace from string in SGI C check
-rw-r--r-- | ares/m4/cares-compilers.m4 | 6 | ||||
-rw-r--r-- | m4/curl-compilers.m4 | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/ares/m4/cares-compilers.m4 b/ares/m4/cares-compilers.m4 index 8d0c069e6..eaf0cc216 100644 --- a/ares/m4/cares-compilers.m4 +++ b/ares/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 diff --git a/m4/curl-compilers.m4 b/m4/curl-compilers.m4 index f15e9fb98..469801e69 100644 --- a/m4/curl-compilers.m4 +++ b/m4/curl-compilers.m4 @@ -230,12 +230,12 @@ AC_DEFUN([CURL_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 |