summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2021-11-09 16:54:25 -0500
committerB. Stack <bgstack15@gmail.com>2021-11-09 16:54:25 -0500
commit69602ae868db4c1cc81bb8e5d02a1e8eeff1e325 (patch)
tree779fa35fe01bdc2fa4b128e74df8f411256d036d
parentexperimental: add lto and -jX (diff)
downloadstackrpms-69602ae868db4c1cc81bb8e5d02a1e8eeff1e325.tar.gz
stackrpms-69602ae868db4c1cc81bb8e5d02a1e8eeff1e325.tar.bz2
stackrpms-69602ae868db4c1cc81bb8e5d02a1e8eeff1e325.zip
remove -j(nproc) after all
-rw-r--r--newmoon/debian/mozconfig3
1 files changed, 1 insertions, 2 deletions
diff --git a/newmoon/debian/mozconfig b/newmoon/debian/mozconfig
index 967a2bc..33bb9be 100644
--- a/newmoon/debian/mozconfig
+++ b/newmoon/debian/mozconfig
@@ -70,8 +70,7 @@ ac_add_options --x-libraries=/usr/lib
# limit to 4 cpus to limit memory usage (approximately 0.75 GiB RAM/thread)
# Debian Sid/Devuan Ceres; 2020-07 only -j1 works due to a bug.
-# 2021-11 try -j$(nproc) again
-mk_add_options MOZ_MAKE_FLAGS="-j$(nproc)"
+mk_add_options MOZ_MAKE_FLAGS="-j1"
export MOZ_PKG_SPECIAL=gtk2
# Experimental
bgstack15