summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Aillon <caillon@redhat.com>2011-01-29 14:52:59 -0800
committerChristopher Aillon <caillon@redhat.com>2011-01-29 14:52:59 -0800
commitb2dc87063de98cbf11714831b19bcc22c048c89f (patch)
treef95cdc22fb67f5538aa445bb49373290722a6ff0
parentNo longer need to define and clean up the build root (diff)
downloadlibrewolf-fedora-ff-b2dc87063de98cbf11714831b19bcc22c048c89f.tar.gz
librewolf-fedora-ff-b2dc87063de98cbf11714831b19bcc22c048c89f.tar.bz2
librewolf-fedora-ff-b2dc87063de98cbf11714831b19bcc22c048c89f.zip
Don't overwrite CFLAGS/CXXFLAGS
The -debuginfo mozconfig was stomping on our CFLAGS/CXXFLAGS.
-rw-r--r--firefox-mozconfig-debuginfo4
1 files changed, 2 insertions, 2 deletions
diff --git a/firefox-mozconfig-debuginfo b/firefox-mozconfig-debuginfo
index a0ef07a..8a874b4 100644
--- a/firefox-mozconfig-debuginfo
+++ b/firefox-mozconfig-debuginfo
@@ -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
bgstack15