[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:
This commit is contained in:
Bill Wendling
2003-11-14 15:23:48 -05:00
parent 5967e0542a
commit 25b5d2b0df

View File

@@ -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"