summaryrefslogtreecommitdiff
path: root/newmoon
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-08-23 07:12:41 -0400
committerB Stack <bgstack15@gmail.com>2020-08-23 07:12:41 -0400
commit309ba3f820504670643f1338d8a752b236a31672 (patch)
tree403e477abba2d5a39f936972cad6def92955b37e /newmoon
parentfix newmoon name to single word (diff)
downloadstackrpms-309ba3f820504670643f1338d8a752b236a31672.tar.gz
stackrpms-309ba3f820504670643f1338d8a752b236a31672.tar.bz2
stackrpms-309ba3f820504670643f1338d8a752b236a31672.zip
use ENABLE_STRIP in d/rules
This is to actually use the change to strip objects before linking libxul that Gord provided.
Diffstat (limited to 'newmoon')
-rwxr-xr-xnewmoon/debian/rules2
1 files changed, 1 insertions, 1 deletions
diff --git a/newmoon/debian/rules b/newmoon/debian/rules
index 10797b7..461d685 100755
--- a/newmoon/debian/rules
+++ b/newmoon/debian/rules
@@ -27,7 +27,7 @@ override_dh_auto_configure:
cp ${MCFILE} mozconfig
override_dh_auto_build:
- make -f client.mk build
+ make -f client.mk build ENABLE_STRIP=1
override_dh_auto_install:
make -f client.mk DESTDIR=$$(pwd)/debian/newmoon prefix=/usr \
bgstack15