diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-11 00:09:19 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-11 00:09:19 -0500 |
commit | d274ba2081cce6ff59f94e608a348f20ba1fe775 (patch) | |
tree | f6bf49142f727e9d0a8ae2bb38a89a6a4cdcf97a /arch | |
parent | 9819d85c210f5953fffc1052060e589d633f20ed (diff) |
x86: fix "make install" target
Removing the dependency on the boot image build was good, but it also
meant that the $< expansion by make needed to be done explicitly.
Noted by Stephen Hemminger.
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/i386/boot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/i386/boot/Makefile b/arch/i386/boot/Makefile index 0fea75dd4e31..f136752563b1 100644 --- a/arch/i386/boot/Makefile +++ b/arch/i386/boot/Makefile | |||
@@ -101,4 +101,4 @@ zlilo: $(BOOTIMAGE) | |||
101 | if [ -x /sbin/lilo ]; then /sbin/lilo; else /etc/lilo/install; fi | 101 | if [ -x /sbin/lilo ]; then /sbin/lilo; else /etc/lilo/install; fi |
102 | 102 | ||
103 | install: | 103 | install: |
104 | sh $(srctree)/$(src)/install.sh $(KERNELRELEASE) $< System.map "$(INSTALL_PATH)" | 104 | sh $(srctree)/$(src)/install.sh $(KERNELRELEASE) $(BOOTIMAGE) System.map "$(INSTALL_PATH)" |