From: guido Date: Thu, 21 Apr 2005 15:02:06 +0000 (+0000) Subject: make intel compiler identification digestible (remove whitespace) X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b14822316ba772dd9eaab0b2fe9dbb168ef2d657;p=dealii-svn.git make intel compiler identification digestible (remove whitespace) git-svn-id: https://svn.dealii.org/trunk@10556 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/aclocal.m4 b/deal.II/aclocal.m4 index 74b012c6bd..fbe4e95b2e 100644 --- a/deal.II/aclocal.m4 +++ b/deal.II/aclocal.m4 @@ -202,19 +202,19 @@ AC_DEFUN(DEAL_II_DETERMINE_CXX_BRAND, dnl version7="`echo $is_intel_icc | grep 'Version 7'`" version8="`echo $is_intel_icc | grep 'Version 8'`" if test "x$version5" != "x" ; then - AC_MSG_RESULT(C++ compiler is Intel ICC 5) + AC_MSG_RESULT(C++ compiler is icc-5) GXX_VERSION=intel_icc5 else if test "x$version6" != "x" ; then - AC_MSG_RESULT(C++ compiler is Intel ICC 6) + AC_MSG_RESULT(C++ compiler is icc-6) GXX_VERSION=intel_icc6 else if test "x$version7" != "x" ; then - AC_MSG_RESULT(C++ compiler is Intel ICC 7) + AC_MSG_RESULT(C++ compiler is icc-7) GXX_VERSION=intel_icc7 else if test "x$version8" != "x" ; then - AC_MSG_RESULT(C++ compiler is Intel ICC 8) + AC_MSG_RESULT(C++ compiler is icc-8) GXX_VERSION=intel_icc8 else - AC_MSG_RESULT(C++ compiler is Intel ICC) + AC_MSG_RESULT(C++ compiler is icc) GXX_VERSION=intel_icc fi fi fi fi GXX_VERSION_DETAILED=$GXX_VERSION @@ -223,7 +223,7 @@ AC_DEFUN(DEAL_II_DETERMINE_CXX_BRAND, dnl dnl Or DEC's cxx compiler? is_dec_cxx="`($CXX -V 2>&1) | grep 'Compaq C++'`" if test "x$is_dec_cxx" != "x" ; then - AC_MSG_RESULT(C++ compiler is Compaq cxx) + AC_MSG_RESULT(C++ compiler is Compaq-cxx) GXX_VERSION=compaq_cxx GXX_VERSION_DETAILED=$GXX_VERSION else