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
1 changed files with 2 additions and 2 deletions

View File

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