From: Masahiro Yamada Date: Sun, 13 Mar 2016 00:39:22 +0000 (+0900) Subject: kbuild: specify modules(_install) as PHONY rather than FORCE X-Git-Tag: v4.7-rc1~35^2~20 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=612e47cec4ad6c5e49fe0a248b0c70849c86b0ee;p=karo-tx-linux.git kbuild: specify modules(_install) as PHONY rather than FORCE As in other places, PHONY is a better fit for "modules" and "modules_install". Signed-off-by: Masahiro Yamada Signed-off-by: Michal Marek --- diff --git a/Makefile b/Makefile index f1e5e3bcc217..ec3dde3f6bb8 100644 --- a/Makefile +++ b/Makefile @@ -1208,7 +1208,8 @@ else # CONFIG_MODULES # Modules not configured # --------------------------------------------------------------------------- -modules modules_install: FORCE +PHONY += modules modules_install +modules modules_install: @echo >&2 @echo >&2 "The present kernel configuration has modules disabled." @echo >&2 "Type 'make config' and enable loadable module support."