diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-11-14 20:36:53 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-11-14 20:36:53 (GMT) |
commit | b303888f43fb1ddf0bbb68931270954eb950b77c (patch) | |
tree | 711e3428558696d3e938f9b1b90eebefc83486cf /config/irix6.x | |
parent | a9d0aadef0cd3ae6d6f36f2306a79d61bf31e943 (diff) | |
download | hdf5-b303888f43fb1ddf0bbb68931270954eb950b77c.zip hdf5-b303888f43fb1ddf0bbb68931270954eb950b77c.tar.gz hdf5-b303888f43fb1ddf0bbb68931270954eb950b77c.tar.bz2 |
[svn-r7854] Purpose:
Bug Fix
Description:
The FFLAGS, CXXFLAGS, and CPPFLAGS variables weren't carrying
user-defined values into the Makefiles.
Solution:
Changed the flags from FOO="..." to FOO="$FOO ..."
Platforms tested:
Copper
Verbena
Arabica
Misc. update:
Diffstat (limited to 'config/irix6.x')
-rw-r--r-- | config/irix6.x | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/irix6.x b/config/irix6.x index a8a6b6f..57cf186 100644 --- a/config/irix6.x +++ b/config/irix6.x @@ -105,7 +105,7 @@ fi if test "X-" = "X-$f9x_flags_set"; then F9XSUFFIXFLAG="" FSEARCH_DIRS="" - FFLAGS="-64 -mips4 -O -s" + FFLAGS="$FFLAGS -64 -mips4 -O -s" DEBUG_FFLAGS="-64 -mips4 -O -s" PROD_FFLAGS="-64 -mips4 -O -s" PROFILE_FFLAGS="-64 -mips4 -O -s" @@ -124,7 +124,7 @@ fi if test -z "$cxx_flags_set"; then # -LANG:std required for std use; -ptused causes templates used to be # instantiated - CPPFLAGS="-LANG:std -ptused" + CPPFLAGS="$CPPFLAGS -LANG:std -ptused" # libCio is a default library, since libtool before 1.5 doesn't fully # support C++ yet, default libraries must be explicitly specified. |