diff options
author | Michael Vogt <egon@bottom> | 2006-05-17 17:58:24 +0200 |
---|---|---|
committer | Michael Vogt <egon@bottom> | 2006-05-17 17:58:24 +0200 |
commit | 4f5bd4471049f89c4ce52864e62f54aadf1804d4 (patch) | |
tree | 25284272f8e1ccfc3450166a01308c21db7223c0 /buildlib | |
parent | 131a2dc0cb36c29d002c2a61f96411e5d84f4adf (diff) | |
parent | 8c64fc132ce0743f02b4d7216a3646a8fb93d8b6 (diff) |
merged with the debian-sid branch
Diffstat (limited to 'buildlib')
-rw-r--r-- | buildlib/defaults.mak | 17 |
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 |