diff options
author | Masahiro Yamada | 2016-03-13 01:39:22 +0100 |
---|---|---|
committer | Michal Marek | 2016-04-20 10:29:20 +0200 |
commit | 612e47cec4ad6c5e49fe0a248b0c70849c86b0ee (patch) | |
tree | 18ea310a4d3be6975fbd343748e8c0083ef9414b /Makefile | |
parent | kbuild: drop FORCE from PHONY targets (diff) | |
download | kernel-qcow2-linux-612e47cec4ad6c5e49fe0a248b0c70849c86b0ee.tar.gz kernel-qcow2-linux-612e47cec4ad6c5e49fe0a248b0c70849c86b0ee.tar.xz kernel-qcow2-linux-612e47cec4ad6c5e49fe0a248b0c70849c86b0ee.zip |
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 <yamada.masahiro@socionext.com>
Signed-off-by: Michal Marek <mmarek@suse.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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." |