diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2017-01-27 13:08:10 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-01-27 13:08:10 +0000 |
commit | f7ee83b4a78a02765550064053371291fc96b7d6 (patch) | |
tree | a3f5ec3e67b1e00a59c94eb7f5959ead86991758 /community/firefox-esr/APKBUILD | |
parent | b55d326bec60171d78c7952c8e7d1a1ee63c91aa (diff) | |
download | aports-f7ee83b4a78a02765550064053371291fc96b7d6.tar.bz2 aports-f7ee83b4a78a02765550064053371291fc96b7d6.tar.xz |
community/firefox-esr: build fix for x86
xattrs does not make it to the underlying filesystem in fakeroot so we
paxmark outside fakeroot.
Diffstat (limited to 'community/firefox-esr/APKBUILD')
-rw-r--r-- | community/firefox-esr/APKBUILD | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/community/firefox-esr/APKBUILD b/community/firefox-esr/APKBUILD index 43d8ae44f7..98fe82ca96 100644 --- a/community/firefox-esr/APKBUILD +++ b/community/firefox-esr/APKBUILD @@ -112,6 +112,9 @@ build() { make -f client.mk build \ STRIP="/bin/true" \ || return 1 + + # we need set paxmark outside fakeroot + paxmark -msp */dist/bin/xpcshell || return 1 } package() { |