summaryrefslogtreecommitdiffstats
path: root/http
diff options
context:
space:
mode:
authorIsmael Luceno2019-08-26 23:23:33 +0200
committerIsmael Luceno2019-08-26 23:23:33 +0200
commitc49b54d5e04e6c636c25540c1bc5b076095f4cce (patch)
tree0c95a5af725c59db658c724cd551999648ae6add /http
parent3f35aa78c80d60028bd7ae15b8e2b4b1769e13f4 (diff)
firefox: Improve build times when stripping
Diffstat (limited to 'http')
-rw-r--r--http/firefox/HISTORY1
-rwxr-xr-xhttp/firefox/PRE_BUILD8
2 files changed, 6 insertions, 3 deletions
diff --git a/http/firefox/HISTORY b/http/firefox/HISTORY
index 848fbf33c3..6619f943e0 100644
--- a/http/firefox/HISTORY
+++ b/http/firefox/HISTORY
@@ -1,6 +1,7 @@
2019-08-26 Ismael Luceno <ismael@sourcemage.org>
* BUILD: Simpilfied cleanup of CFLAGS/CXXFLAGS
* DEPENDS: Added missing libvpx and libpng configure flags
+ * PRE_BUILD: Improved build times when stripping
2019-08-14 Pavel Vinogradov <public@sourcemage.org>
* DETAILS: version 68.0.2, SECURITY_PATCH++, (CVE-2019-11733)
diff --git a/http/firefox/PRE_BUILD b/http/firefox/PRE_BUILD
index 0aefe08898..e3b80213a8 100755
--- a/http/firefox/PRE_BUILD
+++ b/http/firefox/PRE_BUILD
@@ -10,10 +10,12 @@ cp -v $SPELL_DIRECTORY/mozconfig .mozconfig &&
# Be explicit: stripped install is the default.
if [[ "$FIREFOX_STRIP" == "y" ]]; then
- echo 'ac_add_options --enable-install-strip' >> .mozconfig
+ echo 'ac_add_options --enable-install-strip'
+ echo 'ac_add_options --enable-strip'
+ echo 'ac_add_options --disable-debug-symbols'
else
- echo 'ac_add_options --disable-install-strip' >> .mozconfig
-fi &&
+ echo 'ac_add_options --disable-install-strip'
+fi >> .mozconfig &&
if [[ "$FIREFOX_SDK" == "n" ]]; then
sed -i 's/^\(INSTALL_SDK = .*\)$/#\1/' browser/installer/Makefile.in