Skip to content
Snippets Groups Projects
Commit 1930b6d8 authored by Timo Teräs's avatar Timo Teräs
Browse files

main/xulrunner: fix pax mark on x86

parent 5c8cfe25
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@
pkgname=xulrunner
pkgver=26.0
_ffoxver=$pkgver
pkgrel=5
pkgrel=6
pkgdesc="runtime environment for xul-based applications"
url="http://developer.mozilla.org/en/XULRunner"
arch="all"
......@@ -102,7 +102,10 @@ package() {
cd "$_builddir"
# only used for startupcache creation.
paxctl -c -m */dist/bin/xpcshell || return 1
local paxflags="-m"
[ "$CARCH" = "x86" ] && paxflags="-msp"
paxctl -c $paxflags */dist/bin/xpcshell || return 1
make -j1 DESTDIR="$pkgdir" -f client.mk install || return 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment