diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2022-04-30 21:16:38 +0900 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2022-05-08 03:17:00 +0900 |
commit | 63cbee7f3a1d4f48f8aceb11598f0da4f32fb403 (patch) | |
tree | 98ec2783506b8a4a659f1056ac3b73fce75e280e | |
parent | 8d613a1d048c233a490d45a26d55fc2fd58d26e8 (diff) | |
download | linux-stable-63cbee7f3a1d4f48f8aceb11598f0da4f32fb403.tar.gz linux-stable-63cbee7f3a1d4f48f8aceb11598f0da4f32fb403.tar.bz2 linux-stable-63cbee7f3a1d4f48f8aceb11598f0da4f32fb403.zip |
ia64: make the install target not depend on any build artifact
The install target should not depend on any build artifact.
The reason is explained in commit 19514fc665ff ("arm, kbuild: make
"make install" not depend on vmlinux").
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
-rw-r--r-- | arch/ia64/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/ia64/Makefile b/arch/ia64/Makefile index 3b3ac3e1f272..6c4bfa54b703 100644 --- a/arch/ia64/Makefile +++ b/arch/ia64/Makefile @@ -72,8 +72,8 @@ archheaders: CLEAN_FILES += vmlinux.gz -install: vmlinux.gz - sh $(srctree)/arch/ia64/install.sh $(KERNELRELEASE) $< System.map "$(INSTALL_PATH)" +install: + sh $(srctree)/arch/ia64/install.sh $(KERNELRELEASE) vmlinux.gz System.map "$(INSTALL_PATH)" define archhelp echo '* compressed - Build compressed kernel image' |