direct-io.hg
changeset 9776:2da06d15d0f1
[IA64] fix make world
When the arch/ia64/Makefile was cloned from the Linux tree, the install
target was changed to remove a dependency on vmlinux.gz. That makes
sense, but the invocation of install.sh in that target still used $<
to refer to the dependency that had been removed. Hence, install.sh
would fail, and make world would stop prematurely.
Signed-off-by: Al Stone <ahs3@fc.hp.com>
When the arch/ia64/Makefile was cloned from the Linux tree, the install
target was changed to remove a dependency on vmlinux.gz. That makes
sense, but the invocation of install.sh in that target still used $<
to refer to the dependency that had been removed. Hence, install.sh
would fail, and make world would stop prematurely.
Signed-off-by: Al Stone <ahs3@fc.hp.com>
author | awilliam@xenbuild.aw |
---|---|
date | Mon Apr 03 08:58:10 2006 -0600 (2006-04-03) |
parents | 3b3a5588baca |
children | 40d96f4e9fcb |
files | linux-2.6-xen-sparse/arch/ia64/Makefile |
line diff
1.1 --- a/linux-2.6-xen-sparse/arch/ia64/Makefile Mon Apr 03 08:33:35 2006 -0600 1.2 +++ b/linux-2.6-xen-sparse/arch/ia64/Makefile Mon Apr 03 08:58:10 2006 -0600 1.3 @@ -91,7 +91,7 @@ boot: lib/lib.a vmlinux 1.4 $(Q)$(MAKE) $(build)=$(boot) $@ 1.5 1.6 install: 1.7 - sh $(srctree)/arch/ia64/install.sh $(KERNELRELEASE) $< System.map "$(INSTALL_PATH)" 1.8 + -yes | sh $(srctree)/arch/ia64/install.sh $(KERNELRELEASE) vmlinux.gz System.map "$(INSTALL_PATH)" 1.9 1.10 define archhelp 1.11 echo '* compressed - Build compressed kernel image'