Don't overwrite CFLAGS/CXXFLAGS

The -debuginfo mozconfig was stomping on our CFLAGS/CXXFLAGS.
This commit is contained in:
Christopher Aillon 2011-01-29 14:52:59 -08:00
parent c763d0e4b3
commit b2dc87063d

View File

@ -1,5 +1,5 @@
# For mozilla's debuginfo: # For mozilla's debuginfo:
export CFLAGS="-gstabs+" export CFLAGS="$CFLAGS -gstabs+"
export CXXFLAGS="-gstabs+" export CXXFLAGS="$CXXFLAGS -gstabs+"
export MOZ_DEBUG_SYMBOLS=1 export MOZ_DEBUG_SYMBOLS=1
ac_add_options --enable-crashreporter ac_add_options --enable-crashreporter