diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2020-02-16 23:48:29 +0900 |
---|---|---|
committer | Vasily Gorbik <gor@linux.ibm.com> | 2020-02-17 18:01:58 +0100 |
commit | 94e90f727f7424d827256023cace829cad6896f4 (patch) | |
tree | a0950c9968c7c34da765f16ff6a8843a4cbbe7e6 /arch/s390/boot | |
parent | 788d671517b5c81efbed9310ccbadb8cca86a08e (diff) | |
download | linux-94e90f727f7424d827256023cace829cad6896f4.tar.bz2 |
s390: make 'install' not depend on vmlinux
For the same reason as commit 19514fc665ff ("arm, kbuild: make "make
install" not depend on vmlinux"), the install targets should never
trigger the rebuild of the kernel.
The variable, CONFIGURE, is not set by anyone. Remove it as well.
Link: https://lkml.kernel.org/r/20200216144829.27023-1-masahiroy@kernel.org
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
Diffstat (limited to 'arch/s390/boot')
-rw-r--r-- | arch/s390/boot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/boot/Makefile b/arch/s390/boot/Makefile index e2c47d3a1c89..0ff9261c915e 100644 --- a/arch/s390/boot/Makefile +++ b/arch/s390/boot/Makefile @@ -70,7 +70,7 @@ $(obj)/compressed/vmlinux: $(obj)/startup.a FORCE $(obj)/startup.a: $(OBJECTS) FORCE $(call if_changed,ar) -install: $(CONFIGURE) $(obj)/bzImage +install: sh -x $(srctree)/$(obj)/install.sh $(KERNELRELEASE) $(obj)/bzImage \ System.map "$(INSTALL_PATH)" |