Commit 6c2133e1 authored by Sam Ravnborg's avatar Sam Ravnborg

kbuild: fix make help & make *pkg

FORCE was not defined => error.
Use kbuild infrastructure to call down to the relevant
Makefile. This enables us to use the FORCE definition from kbuild.
Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
parent dc9a49a4
...@@ -994,9 +994,9 @@ distclean: mrproper ...@@ -994,9 +994,9 @@ distclean: mrproper
package-dir := $(srctree)/scripts/package package-dir := $(srctree)/scripts/package
%pkg: FORCE %pkg: FORCE
$(Q)$(MAKE) -f $(package-dir)/Makefile $@ $(Q)$(MAKE) $(build)=$(package-dir) $@
rpm: FORCE rpm: FORCE
$(Q)$(MAKE) -f $(package-dir)/Makefile $@ $(Q)$(MAKE) $(build)=$(package-dir) $@
# Brief documentation of the typical targets used # Brief documentation of the typical targets used
...@@ -1034,7 +1034,7 @@ help: ...@@ -1034,7 +1034,7 @@ help:
@echo ' namespacecheck - Name space analysis on compiled kernel' @echo ' namespacecheck - Name space analysis on compiled kernel'
@echo '' @echo ''
@echo 'Kernel packaging:' @echo 'Kernel packaging:'
@$(MAKE) -f $(package-dir)/Makefile help @$(MAKE) $(build)=$(package-dir) help
@echo '' @echo ''
@echo 'Documentation targets:' @echo 'Documentation targets:'
@$(MAKE) -f $(srctree)/Documentation/DocBook/Makefile dochelp @$(MAKE) -f $(srctree)/Documentation/DocBook/Makefile dochelp
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment