diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-10-31 04:59:57 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-10-31 04:59:57 (GMT) |
commit | c9874681a6b5056598a5170faecad9b29640fbba (patch) | |
tree | fc9b59096e6bb0b564ebe6d8851fc673ec8ecc04 /config/intel-fflags | |
parent | eec27da1dfc81d197bae71a7c3ae90e9ef910816 (diff) | |
download | hdf5-c9874681a6b5056598a5170faecad9b29640fbba.zip hdf5-c9874681a6b5056598a5170faecad9b29640fbba.tar.gz hdf5-c9874681a6b5056598a5170faecad9b29640fbba.tar.bz2 |
[svn-r9491] Purpose:
Bug fix
Description:
"Teach" the configure scripts about Intel 7.1 compilers, which don't have
_quite_ the same compiler flags
Platforms tested:
Linux 2.4 (eirene)
Diffstat (limited to 'config/intel-fflags')
-rw-r--r-- | config/intel-fflags | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/intel-fflags b/config/intel-fflags index 29398d0..0a65f0e 100644 --- a/config/intel-fflags +++ b/config/intel-fflags @@ -15,7 +15,7 @@ if test X = "X$f9x_flags_set"; then f9x_version="`$F9X $FFLAGS -V 2>&1 |grep '^Intel'`" if test X != "X$f9x_version"; then f9x_vendor=ifort - f9x_version="`$F9X $FFLAGS -v 2>&1 |sed 's/Version \([-a-z0-9\.\-]*\).*/\1/'`" + f9x_version="`echo $f9x_version |sed 's/.*Version \([-a-z0-9\.\-]*\).*/\1/'`" echo "compiler '$F9X' is Intel $f9x_vendor-$f9x_version" # Some version numbers |