svn commit: r389557 - head/Mk
Antoine Brodin
antoine at FreeBSD.org
Sat Jun 13 22:57:18 UTC 2015
Author: antoine
Date: Sat Jun 13 22:57:17 2015
New Revision: 389557
URL: https://svnweb.freebsd.org/changeset/ports/389557
Log:
Respect DISABLE_MAKE_JOBS in gecko ports
Modified:
head/Mk/bsd.gecko.mk
Modified: head/Mk/bsd.gecko.mk
==============================================================================
--- head/Mk/bsd.gecko.mk Sat Jun 13 22:06:57 2015 (r389556)
+++ head/Mk/bsd.gecko.mk Sat Jun 13 22:57:17 2015 (r389557)
@@ -406,6 +406,9 @@ MOZ_OPTIONS+= --enable-strip --enable-in
# _MAKE_JOBS is only available after bsd.port.post.mk, thus cannot be
# used in .mozconfig. And client.mk automatically uses -jN where N
# is what multiprocessing.cpu_count() returns.
+.if defined(DISABLE_MAKE_JOBS) || defined(MAKE_JOBS_UNSAFE)
+MAKE_JOBS_NUMBER= 1
+.endif
.if defined(MAKE_JOBS_NUMBER)
MOZ_MAKE_FLAGS+=-j${MAKE_JOBS_NUMBER}
.endif
More information about the svn-ports-head
mailing list