diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-12-04 16:47:11 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-12-04 16:47:11 (GMT) |
commit | 16eb2223198a3d6d38718039031baff26ee26101 (patch) | |
tree | 03ae614e7e15e89c1f98b32240f503c1773786c1 | |
parent | 8a3dc0fad80859a805b14dfba31d44781c1ec22d (diff) | |
download | hdf5-16eb2223198a3d6d38718039031baff26ee26101.zip hdf5-16eb2223198a3d6d38718039031baff26ee26101.tar.gz hdf5-16eb2223198a3d6d38718039031baff26ee26101.tar.bz2 |
[svn-r3071] Purpose:
Bug Fix
Description:
The fix we put in to ignore warning 405 was incorrect. The quotes
were confusing to configure.
Solution:
Turns out that there doesn't need to be a space between the -M
flag and the warning number.
Platforms tested:
T3E
-rw-r--r-- | fortran/config/unicosmk2.0.X | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/fortran/config/unicosmk2.0.X b/fortran/config/unicosmk2.0.X index b52bca3..36dab49 100644 --- a/fortran/config/unicosmk2.0.X +++ b/fortran/config/unicosmk2.0.X @@ -160,9 +160,11 @@ if test "X-" = "X-$F9X"; then fi if test "X-" = "X-$f9x_flags_set"; then - FFLAGS="-dp -Wl\"-M 405\"" - DEBUG_FFLAGS="-dp" - PROD_FFLAGS="-dp" - PROFILE_FFLAGS="-dp" + # -Wl passes flags to the linker and -M# will ignore warnings with + # number #. Warning 405 was stopping the executable from being built. + FFLAGS="-dp -Wl-M405" + DEBUG_FFLAGS="" + PROD_FFLAGS="" + PROFILE_FFLAGS="" f9x_flags_set=yes fi |