projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9819d85
)
x86: fix "make install" target
author
Linus Torvalds
<torvalds@g5.osdl.org>
Wed, 11 Jan 2006 05:09:19 +0000
(21:09 -0800)
committer
Linus Torvalds
<torvalds@g5.osdl.org>
Wed, 11 Jan 2006 05:09:19 +0000
(21:09 -0800)
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>
arch/i386/boot/Makefile
patch
|
blob
|
blame
|
history
diff --git
a/arch/i386/boot/Makefile
b/arch/i386/boot/Makefile
index 0fea75dd4e318569f0dad27c126c50cc94636261..f136752563b105b93fee00a3b75824eb2c6af055 100644
(file)
--- a/
arch/i386/boot/Makefile
+++ b/
arch/i386/boot/Makefile
@@
-101,4
+101,4
@@
zlilo: $(BOOTIMAGE)
if [ -x /sbin/lilo ]; then /sbin/lilo; else /etc/lilo/install; fi
install:
- sh $(srctree)/$(src)/install.sh $(KERNELRELEASE) $
<
System.map "$(INSTALL_PATH)"
+ sh $(srctree)/$(src)/install.sh $(KERNELRELEASE) $
(BOOTIMAGE)
System.map "$(INSTALL_PATH)"