diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2009-10-18 22:56:29 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2009-10-18 22:56:29 (GMT) |
commit | f912cacabcab60e1ef27d3ca99d58f4606b65aa4 (patch) | |
tree | 7753850865e1ffd55d0d2e15bdc7c40fce80ec71 | |
parent | f3986a1b59971362f08f2ddfe400022e1dac79e5 (diff) | |
download | hdf5-f912cacabcab60e1ef27d3ca99d58f4606b65aa4.zip hdf5-f912cacabcab60e1ef27d3ca99d58f4606b65aa4.tar.gz hdf5-f912cacabcab60e1ef27d3ca99d58f4606b65aa4.tar.bz2 |
[svn-r17672] Removed these two options from the fortran flags:
-qmoddir=. because -qmoddir defaults to current directory already.
-static because it is not mentioned in "man xlf". Don't know it was a typo
or just an obsoleted option.
Removing both of them produced no ill or visible effects.
Tested: Up of LLNL
-rw-r--r-- | config/powerpc-ibm-aix5.x | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/powerpc-ibm-aix5.x b/config/powerpc-ibm-aix5.x index 51952bc..ac70bac 100644 --- a/config/powerpc-ibm-aix5.x +++ b/config/powerpc-ibm-aix5.x @@ -142,8 +142,8 @@ fi # to ensure the flag is present for both configure as well as for the build. if test "X-" = "X-$f9x_flags_set"; then F9XSUFFIXFLAG="-qsuffix=f=f90" - FCFLAGS="$FCFLAGS -static -O ${F9XSUFFIXFLAG} -qmoddir=./" - H5_FCFLAGS="$H5_FCFLAGS -static -O ${F9XSUFFIXFLAG} -qmoddir=./" + FCFLAGS="$FCFLAGS -O ${F9XSUFFIXFLAG}" + H5_FCFLAGS="$H5_FCFLAGS -O ${F9XSUFFIXFLAG}" FSEARCH_DIRS="-I./ -I../src" DEBUG_FCFLAGS="-O" PROD_FCFLAGS="-O" |