summaryrefslogtreecommitdiffstats
path: root/http
diff options
context:
space:
mode:
authorIsmael Luceno2019-08-26 23:18:58 +0200
committerIsmael Luceno2019-08-26 23:18:58 +0200
commit4cf1b59c404d149140d06753492a8e49c014c836 (patch)
tree9635c3bb53f31a261a0b810168a84e8899095386 /http
parent2087880a9d119388dc5134060714272016f4440d (diff)
firefox: Simpilfy cleanup of CFLAGS/CXXFLAGS
Diffstat (limited to 'http')
-rwxr-xr-xhttp/firefox/BUILD6
-rw-r--r--http/firefox/HISTORY3
2 files changed, 5 insertions, 4 deletions
diff --git a/http/firefox/BUILD b/http/firefox/BUILD
index 5a89db55f9..ce6fc40ab8 100755
--- a/http/firefox/BUILD
+++ b/http/firefox/BUILD
@@ -16,10 +16,8 @@ export RUSTFLAGS="-C debuginfo=0" &&
# No fast optimization for Mozilla, bit us so many times...
# This used to default to -O2, but that produces crashing firefox for
# sobukus with gcc-5.2.0; -Os seems more safe.
-CFLAGS="${CFLAGS//-Os/-O2}" &&
-CXXFLAGS="${CXXFLAGS//-Os/-O2}" &&
-CFLAGS="${CFLAGS//-O3/-O2}" &&
-CXXFLAGS="${CXXFLAGS//-O3/-O2}" &&
+CFLAGS="${CFLAGS//-O[3s]/-O2}" &&
+CXXFLAGS="${CXXFLAGS//-O[3s]/-O2}" &&
# harden
LDFLAGS="$LDFLAGS -Wl,-z,now" &&
diff --git a/http/firefox/HISTORY b/http/firefox/HISTORY
index f748fc5347..aca35fff58 100644
--- a/http/firefox/HISTORY
+++ b/http/firefox/HISTORY
@@ -1,3 +1,6 @@
+2019-08-26 Ismael Luceno <ismael@sourcemage.org>
+ * BUILD: Simpilfied cleanup of CFLAGS/CXXFLAGS
+
2019-08-14 Pavel Vinogradov <public@sourcemage.org>
* DETAILS: version 68.0.2, SECURITY_PATCH++, (CVE-2019-11733)