summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2019-09-06 15:45:29 -0700
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2019-09-06 15:45:29 -0700
commit75eecd5b79f91cf760e915c760131201b024e8cd (patch)
tree384da600266cd989331d654fcca8eac94177ecd4
parentReorder cflags (diff)
downloadfirefox-esr-75eecd5b79f91cf760e915c760131201b024e8cd.tar.xz
Rebuild with -fPIC
-rw-r--r--PKGBUILD8
1 files changed, 3 insertions, 5 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 0c32eb6..2785fb2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -16,7 +16,7 @@
pkgname=firefox
pkgver=69.0
-pkgrel=1
+pkgrel=1.2
pkgdesc="Standalone web browser from mozilla.org"
arch=(x86_64)
license=(MPL GPL LGPL)
@@ -90,8 +90,6 @@ prepare() {
echo "#plugindeprecation-notice { display: none !important; }" >> toolkit/mozapps/extensions/content/extensions.css
# Hide warnings on unsigned extensions
echo ".warning{display: none!important; } .addon[notification=warning]{background-image: none!important;}" >> toolkit/mozapps/extensions/content/extensions.css
-
-
}
build() {
@@ -99,8 +97,8 @@ build() {
export MOZ_NOSPAM=1
export MOZBUILD_STATE_PATH="$srcdir/mozbuild"
- export CFLAGS="$CFLAGS -O3 -fstack-protector-all"
- export CXXFLAGS="$CXXFLAGS -O3 -fstack-protector-all"
+ export CFLAGS="$CFLAGS -O3 -fstack-protector-all -fPIC"
+ export CXXFLAGS="$CXXFLAGS -O3 -fstack-protector-all -fPIC"
# LTO needs more open files
ulimit -n 4096
msg2 "Building optimized browser..."