Skip to content

Commit 94e90f7

Browse files
masahir0yVasily Gorbik
authored andcommitted
s390: make 'install' not depend on vmlinux
For the same reason as commit 19514fc ("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/[email protected] Signed-off-by: Masahiro Yamada <[email protected]> Signed-off-by: Vasily Gorbik <[email protected]>
1 parent 788d671 commit 94e90f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

arch/s390/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ all: bzImage
146146
#KBUILD_IMAGE is necessary for packaging targets like rpm-pkg, deb-pkg...
147147
KBUILD_IMAGE := $(boot)/bzImage
148148

149-
install: vmlinux
149+
install:
150150
$(Q)$(MAKE) $(build)=$(boot) $@
151151

152152
bzImage: vmlinux

arch/s390/boot/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ $(obj)/compressed/vmlinux: $(obj)/startup.a FORCE
7070
$(obj)/startup.a: $(OBJECTS) FORCE
7171
$(call if_changed,ar)
7272

73-
install: $(CONFIGURE) $(obj)/bzImage
73+
install:
7474
sh -x $(srctree)/$(obj)/install.sh $(KERNELRELEASE) $(obj)/bzImage \
7575
System.map "$(INSTALL_PATH)"
7676

0 commit comments

Comments
 (0)