summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2005-01-19 02:37:16 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2005-01-19 02:37:16 (GMT)
commita9724111508fc690f384424a8deb0473d3492187 (patch)
tree849b3475e6f2453941833349b42dcaf7aa95a199
parent53bb03ebc3b3bcb46d0deb9b8739bc9bc7c341fa (diff)
downloadhdf5-a9724111508fc690f384424a8deb0473d3492187.zip
hdf5-a9724111508fc690f384424a8deb0473d3492187.tar.gz
hdf5-a9724111508fc690f384424a8deb0473d3492187.tar.bz2
[svn-r9836] Purpose:
Bug fix Description: Fix detection of C++ compiler version number. Platforms tested: Solaris 2.7 (arabica) w/C++ Solaris 2.8 (sol) w/C++ Does not require h5committest
-rw-r--r--c++/config/solaris2.x2
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/config/solaris2.x b/c++/config/solaris2.x
index db76497..4643097 100644
--- a/c++/config/solaris2.x
+++ b/c++/config/solaris2.x
@@ -16,7 +16,7 @@ fi
#. $srcdir/config/gnu-flags
cxx_version="`$CXX -V 2>&1 |grep 'WorkShop' |\
- sed 's/.*WorkShop.*C\+\+ \([0-9\.]*\).*/\1/'`"
+ sed 's/.*WorkShop.*C++ \([0-9\.]*\).*/\1/'`"
cxx_vers_major=`echo $cxx_version | cut -f1 -d.`
cxx_vers_minor=`echo $cxx_version | cut -f2 -d.`