diff options
author | B Stack <bgstack15@gmail.com> | 2020-07-26 15:22:13 -0400 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2020-07-26 15:22:13 -0400 |
commit | 51735f7a03d9f1e83ed3410b0174dd07ce63b4bb (patch) | |
tree | 9789776d074366c228e4609182de144c169ffaef /palemoon/debian/mozconfig | |
parent | adjust mozconfig again (diff) | |
download | stackrpms-51735f7a03d9f1e83ed3410b0174dd07ce63b4bb.tar.gz stackrpms-51735f7a03d9f1e83ed3410b0174dd07ce63b4bb.tar.bz2 stackrpms-51735f7a03d9f1e83ed3410b0174dd07ce63b4bb.zip |
try export MOZCONFIG in d/rules
Diffstat (limited to 'palemoon/debian/mozconfig')
-rw-r--r-- | palemoon/debian/mozconfig | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/palemoon/debian/mozconfig b/palemoon/debian/mozconfig index 89b2796..445c209 100644 --- a/palemoon/debian/mozconfig +++ b/palemoon/debian/mozconfig @@ -1,9 +1,3 @@ -if test `lsb_release -sc` = "sid" || test `lsb_release -sc` = "unstable" ; then -export JCOUNT=1 -else -export JCOUNT=4 -fi - mk_add_options AUTOCLOBBER=1 export BUILDING_RELEASE=1 export MC_OFFICIAL=1 @@ -56,4 +50,5 @@ ac_add_options --enable-alsa # primarily for 32-bit but tolerated for 64-bit ac_add_options --x-libraries=/usr/lib -mk_add_options MOZ_MAKE_FLAGS=-j${JCOUNT} +# limit to 4 cpus to limit memory usage (approximately 0.75 GiB RAM/thread) +mk_add_options MOZ_MAKE_FLAGS="-j4" |