summaryrefslogtreecommitdiffstats
path: root/palemoon
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2017-10-01 20:12:23 +0000
committer Eric Hameleers <alien@slackware.com>2017-10-01 20:12:23 +0000
commite4b401dde1c76c812d4e1b341186f4ac1e19efbc (patch)
tree978ed93bd2ac7284f16a10e9a97946bf20d6b101 /palemoon
parent17e6fbdc244cdf7314a743a5391ed2dff4ef1d5d (diff)
downloadasb-e4b401dde1c76c812d4e1b341186f4ac1e19efbc.tar.gz
asb-e4b401dde1c76c812d4e1b341186f4ac1e19efbc.tar.xz
palemoon: no spaces allowed in the options
Diffstat (limited to 'palemoon')
-rwxr-xr-xpalemoon/build/palemoon.SlackBuild3
1 files changed, 2 insertions, 1 deletions
diff --git a/palemoon/build/palemoon.SlackBuild b/palemoon/build/palemoon.SlackBuild
index e1f83789..9aeac5af 100755
--- a/palemoon/build/palemoon.SlackBuild
+++ b/palemoon/build/palemoon.SlackBuild
@@ -253,6 +253,7 @@ export MOZ_MAKE_FLAGS=$NUMJOBS
export PYTHON=/usr/bin/python2
# Our building options, in a configure-like display ;)
+# Note: no spaces allowed in the options themselves.
OPTIONS="\
--prefix=/usr \
--libdir=/usr/lib${LIBDIRSUFFIX} \
@@ -264,7 +265,6 @@ OPTIONS="\
--enable-default-toolkit=${DO_GUI} \
--enable-ffmpeg \
--enable-jemalloc \
- --enable-optimize=\"${DO_OPTIMIZE}\" \
--enable-release \
--enable-shared-js \
--enable-startup-notification \
@@ -288,6 +288,7 @@ OPTIONS="\
rm .mozconfig && touch .mozconfig
echo "mk_add_options MOZ_CO_PROJECT=browser" >> .mozconfig
echo "mk_add_options MOZ_OBJDIR=$TMP/tmp-$PRGNAM/pmbuild" >> .mozconfig
+echo "ac_add_options --enable-optimize=\"${DO_OPTIMIZE}\"" >> .mozconfig
# Add our OPTIONS to the .mozconfig file:
for option in $OPTIONS; do