diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-05-10 21:05:06 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-05-10 21:05:06 (GMT) |
commit | 8e13c3a2608e45c761019461c9b0e7b887aa4888 (patch) | |
tree | 3ec5b02dbd16b05bc05fc9766eef056c44ff8949 /config/gnu-flags | |
parent | 0cf1b5cee2ca2d924186399324f3609a5d7e57c6 (diff) | |
download | hdf5-8e13c3a2608e45c761019461c9b0e7b887aa4888.zip hdf5-8e13c3a2608e45c761019461c9b0e7b887aa4888.tar.gz hdf5-8e13c3a2608e45c761019461c9b0e7b887aa4888.tar.bz2 |
[svn-r5396] Purpose:
Bug Fix
Description:
Placed quotes around strings which could be empty so that the shell
script doesn't complain to us about "too many arguments for test"
problems.
Platforms tested:
Linux
Diffstat (limited to 'config/gnu-flags')
-rw-r--r-- | config/gnu-flags | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/gnu-flags b/config/gnu-flags index 0b10a40..e89b01d 100644 --- a/config/gnu-flags +++ b/config/gnu-flags @@ -34,7 +34,7 @@ if test X = "X$cc_flags_set"; then fi # GCC compilers before gcc-2.8.1 have problems with `long long'. -if test gcc = $cc_vendor -a $cc_vers_all -lt 2008001; then +if test gcc = "$cc_vendor" -a "$cc_vers_all" -lt 2008001; then cat <<EOF ** ** This compiler may be unable to properly compile the long long @@ -49,7 +49,7 @@ EOF # Current EGCS compilers have problems with `long long' and register # allocation when optimizations are turned on for x86 systems. -elif test egcs = $cc_vendor -a $cc_vers_all -le 2091066; then +elif test egcs = "$cc_vendor" -a "$cc_vers_all" -le 2091066; then if test "$HSIZET" != "large"; then cat <<EOF ** @@ -62,7 +62,7 @@ EOF fi # All current versions of PGCC have problems also. -elif test pgcc = $cc_vendor -a $cc_vers_all -le 2091066; then +elif test pgcc = "$cc_vendor" -a "$cc_vers_all" -le 2091066; then cat <<EOF ** ** This compiler may have problems allocating registers for long |