diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2004-12-07 17:12:20 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2004-12-07 17:12:20 (GMT) |
commit | 8f351521db7bb137e9ef686f9ed497110e71e879 (patch) | |
tree | 46e837ea286bd35fd9a5fbd425eb894e393c184f /config | |
parent | ca45c7394bdcbf70fa87eb05d87bae1da3b8e181 (diff) | |
download | hdf5-8f351521db7bb137e9ef686f9ed497110e71e879.zip hdf5-8f351521db7bb137e9ef686f9ed497110e71e879.tar.gz hdf5-8f351521db7bb137e9ef686f9ed497110e71e879.tar.bz2 |
[svn-r9630] Purpose:
Bug fix.
Description:
Last commit would impose $arch even if user has provided his own
$CFLAGS. Fixed it.
Removed the wording of gnu-flags inherited from the copy.
Platforms tested:
Tested in tg-ncsa.
Misc. update:
Diffstat (limited to 'config')
-rw-r--r-- | config/intel-flags | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/intel-flags b/config/intel-flags index f5021d9..101aa09 100644 --- a/config/intel-flags +++ b/config/intel-flags @@ -32,8 +32,8 @@ fi # Common Intel flags for various situations if test "X-icc" = "X-$cc_vendor"; then - # Insert section about version specific problems from gnu-flags here, if - # necessary. + # Insert section about version specific problems from compiler flags here, + # if necessary. arch= # Architecture-specific flags @@ -54,7 +54,7 @@ if test "X-icc" = "X-$cc_vendor"; then # General # Default to C99 standard. - CFLAGS="${CFLAGS:--std=c99} $arch" + CFLAGS="${CFLAGS:--std=c99 $arch}" # Production PROD_CFLAGS="-O3" |