summaryrefslogtreecommitdiff
path: root/buildlib
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2006-04-26 15:58:19 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2006-04-26 15:58:19 +0200
commit42c458038bf47f535a6e70646a08e918e62e6d24 (patch)
tree3df574cd63b9186acc57237413f80f1d684709f3 /buildlib
parent00cd59d97e0656dcc0c24c3d24c877d9c4ec4402 (diff)
* buildlib/defaults.mak:
- commented the auto-cpu number detections (make -j) out, causes too much trouble on my SMP system
Diffstat (limited to 'buildlib')
-rw-r--r--buildlib/defaults.mak17
1 files changed, 9 insertions, 8 deletions
diff --git a/buildlib/defaults.mak b/buildlib/defaults.mak
index c3d08d9d4..a171522d5 100644
--- a/buildlib/defaults.mak
+++ b/buildlib/defaults.mak
@@ -174,11 +174,12 @@ ifeq ($(NUM_PROCS),1)
PARALLEL_RUN=no
endif
-ifndef PARALLEL_RUN
- PARALLEL_RUN=yes
- .EXPORT: PARALLEL_RUN
- # handle recursion
- ifneq ($(NUM_PROCS),)
- MAKEFLAGS += -j $(NUM_PROCS)
- endif
-endif
+# mvo: commented out, lead to build failures in the arch-build target
+#ifndef PARALLEL_RUN
+# PARALLEL_RUN=yes
+# .EXPORT: PARALLEL_RUN
+# # handle recursion
+# ifneq ($(NUM_PROCS),)
+# MAKEFLAGS += -j $(NUM_PROCS)
+# endif
+#endif