]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
kbuild: fix make -jN with multiple targets with O=...
authorSam Ravnborg <sam@mars.ravnborg.org>
Sun, 15 Jan 2006 19:02:31 +0000 (20:02 +0100)
committerSam Ravnborg <sam@mars.ravnborg.org>
Sun, 15 Jan 2006 19:02:31 +0000 (20:02 +0100)
The way multiple targets was handled with make O=...
broke because for each high-level target make spawned
a parallel make resulting in a broken build.
Reported by Keith Owens <kaos@ocs.com.au>

Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Makefile

index deedaf79cdca2325936f63b511b3744163587bd6..b3dd9dbdc29e97d2273ed2535f7acac7bdf91f23 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -106,12 +106,13 @@ KBUILD_OUTPUT := $(shell cd $(KBUILD_OUTPUT) && /bin/pwd)
 $(if $(KBUILD_OUTPUT),, \
      $(error output directory "$(saved-output)" does not exist))
 
-.PHONY: $(MAKECMDGOALS)
+.PHONY: $(MAKECMDGOALS) cdbuilddir
+$(MAKECMDGOALS) _all: cdbuilddir
 
-$(filter-out _all,$(MAKECMDGOALS)) _all:
+cdbuilddir:
        $(if $(KBUILD_VERBOSE:1=),@)$(MAKE) -C $(KBUILD_OUTPUT) \
        KBUILD_SRC=$(CURDIR) \
-       KBUILD_EXTMOD="$(KBUILD_EXTMOD)" -f $(CURDIR)/Makefile $@
+       KBUILD_EXTMOD="$(KBUILD_EXTMOD)" -f $(CURDIR)/Makefile $(MAKECMDGOALS)
 
 # Leave processing to above invocation of make
 skip-makefile := 1