Skip to content
Snippets Groups Projects
Commit 43c2cf4e authored by Yang Tse's avatar Yang Tse
Browse files

remove extra whitespace from string in SGI C check

parent f6d80d66
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment