From b377064f47c65a3f21faa12932a954bcbd4c3a72 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Fri, 3 Feb 2012 18:46:27 +0000 Subject: testing/filefox,xulrunner: dont strip binaries so we keep debug syms --- testing/firefox/APKBUILD | 3 ++- testing/xulrunner/APKBUILD | 7 +++++-- 2 files changed, 7 insertions(+), 3 deletions(-) (limited to 'testing') diff --git a/testing/firefox/APKBUILD b/testing/firefox/APKBUILD index 4df43df6a7..16ac938ba2 100644 --- a/testing/firefox/APKBUILD +++ b/testing/firefox/APKBUILD @@ -4,7 +4,7 @@ pkgname=firefox pkgver=10.0 _pkgver=$pkgver _xulver=10.0 -pkgrel=1 +pkgrel=2 pkgdesc="firefox web browser" url="http://www.firefox.com" arch="all" @@ -71,6 +71,7 @@ prepare() { cp "${srcdir}/mozconfig" .mozconfig echo "ac_add_options --with-libxul-sdk=$(pkg-config --variable=sdkdir libxul)" >> .mozconfig echo "ac_add_options --enable-debug-symbols" >> .mozconfig + echo "ac_add_options --disable-install-strip" >>.mozconfig } build() { diff --git a/testing/xulrunner/APKBUILD b/testing/xulrunner/APKBUILD index 24e8f39297..0a7282f58f 100644 --- a/testing/xulrunner/APKBUILD +++ b/testing/xulrunner/APKBUILD @@ -3,7 +3,7 @@ pkgname=xulrunner pkgver=10.0 _ffoxver=10.0 -pkgrel=1 +pkgrel=2 pkgdesc="runtime environment for xul-based applications" url="http://developer.mozilla.org/en/XULRunner" arch="all" @@ -66,6 +66,7 @@ prepare() { cp "${srcdir}/mozconfig" .mozconfig echo "ac_add_options --enable-debug-symbols" >> .mozconfig + echo "ac_add_options --disable-install-strip" >>.mozconfig } build() { @@ -76,7 +77,9 @@ build() { unset CFLAGS unset CXXFLAGS - make -j1 -f client.mk build MOZ_MAKE_FLAGS="$MAKEFLAGS" || return 1 + make -j1 -f client.mk build \ + STRIP=/bin/true \ + MOZ_MAKE_FLAGS="$MAKEFLAGS" || return 1 } package() { -- cgit v1.2.3