projects
/
platform
/
upstream
/
kernel-adaptation-pc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c38a04b
)
[PATCH] powerpc: Fix clean_files in arch/powerpc/boot Makefile
author
Kumar Gala
<galak@gate.crashing.org>
Wed, 11 Jan 2006 04:36:37 +0000
(22:36 -0600)
committer
Paul Mackerras
<paulus@samba.org>
Wed, 11 Jan 2006 05:28:13 +0000
(16:28 +1100)
clean-files was being set twice rather than being appended to.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
arch/powerpc/boot/Makefile
patch
|
blob
|
history
diff --git
a/arch/powerpc/boot/Makefile
b/arch/powerpc/boot/Makefile
index
22726ae
..
b53d677
100644
(file)
--- a/
arch/powerpc/boot/Makefile
+++ b/
arch/powerpc/boot/Makefile
@@
-176,4
+176,4
@@
$(obj)/uImage: $(obj)/vmlinux.gz
install: $(CONFIGURE) $(BOOTIMAGE)
sh -x $(srctree)/$(src)/install.sh "$(KERNELRELEASE)" vmlinux System.map "$(INSTALL_PATH)" "$(BOOTIMAGE)"
-clean-files
:
= $(addprefix $(objtree)/, $(obj-boot) vmlinux.strip)
+clean-files
+
= $(addprefix $(objtree)/, $(obj-boot) vmlinux.strip)