From 45cd09cab9dbc55a4fdef8eedf7ab10b9a8e67fa Mon Sep 17 00:00:00 2001 From: Jack Moffitt Date: Wed, 20 Nov 2013 09:30:21 -0700 Subject: [PATCH] Disable parallel builds at top level. Sub-builds are still parallelized. This is a workaround for rustpkg issues. See https://github.com/mozilla/rust/issues/9650 --- Makefile.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile.in b/Makefile.in index 48a12933105..3dd528a04f7 100644 --- a/Makefile.in +++ b/Makefile.in @@ -378,3 +378,6 @@ backup-rust: restore-rust: if [ -d ../$(CFG_TARGET_TRIPLES) ]; then rm -rf $(B)src/compiler/rust; mv ../$(CFG_TARGET_TRIPLES) $(B)src/compiler/rust; fi + +.NOTPARALLEL: +