diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-07-03 18:33:31 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-07-03 18:33:31 +0200 |
commit | b7952f4b67d7021dc912aed5f38bc45f03bfc064 (patch) | |
tree | 5d18c4268786a05df634be6dbf3a68a2d0f282b6 /buildlib/defaults.mak | |
parent | c833c7a16381c383588265bbb35ed24ad383b53f (diff) | |
parent | c64d1644ae0fd1af92c80a91a6c17b57f0b8f313 (diff) |
* merged with apts mainline
Diffstat (limited to 'buildlib/defaults.mak')
-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 |