summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/boot
diff options
context:
space:
mode:
authorKumar Gala2006-01-11 05:36:37 +0100
committerPaul Mackerras2006-01-11 06:28:13 +0100
commit886c98d78652f78a64cb21516d3b25ffd5c05e94 (patch)
tree340a1f45ab2725c027d82f7ef9e29f6e6b43a005 /arch/powerpc/boot
parentpowerpc/32: Fix compile error caused by pud_t/pgt_t confusion (diff)
downloadkernel-qcow2-linux-886c98d78652f78a64cb21516d3b25ffd5c05e94.tar.gz
kernel-qcow2-linux-886c98d78652f78a64cb21516d3b25ffd5c05e94.tar.xz
kernel-qcow2-linux-886c98d78652f78a64cb21516d3b25ffd5c05e94.zip
[PATCH] powerpc: Fix clean_files in arch/powerpc/boot Makefile
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>
Diffstat (limited to 'arch/powerpc/boot')
-rw-r--r--arch/powerpc/boot/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile
index 22726aefc8ea..b53d677f6742 100644
--- 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)