summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2003-11-14 20:23:48 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2003-11-14 20:23:48 (GMT)
commit25b5d2b0df40f14480bdb3939fb6f316689e97e7 (patch)
tree7ed4f486311f07dd7d0722c45b8e818a6c2aef8a
parent5967e0542a5b4ec25e91b5564c5519daefe77e30 (diff)
downloadhdf5-25b5d2b0df40f14480bdb3939fb6f316689e97e7.zip
hdf5-25b5d2b0df40f14480bdb3939fb6f316689e97e7.tar.gz
hdf5-25b5d2b0df40f14480bdb3939fb6f316689e97e7.tar.bz2
[svn-r7853] Purpose:
Bug Fix Description: CFLAGS wasn't using user-set values in one instance Solution: Changed CFLAGS="..." to CFLAGS="$CFLAGS ..." Platforms tested: Arabica (the machines affected) Misc. update:
-rw-r--r--config/solaris2.x2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/solaris2.x b/config/solaris2.x
index d6434f5..5c904f6 100644
--- a/config/solaris2.x
+++ b/config/solaris2.x
@@ -17,7 +17,7 @@ fi
# Try solaris native compiler flags
if test "X-" = "X-$cc_flags_set"; then
- CFLAGS="-erroff=%none -DBSD_COMP"
+ CFLAGS="$CFLAGS -erroff=%none -DBSD_COMP"
DEBUG_CFLAGS="-g -xildoff"
DEBUG_CPPFLAGS=
PROD_CFLAGS="-O -s"