[PATCH] powerpc: Fix clean_files in arch/powerpc/boot Makefile
authorKumar Gala <galak@gate.crashing.org>
Wed, 11 Jan 2006 04:36:37 +0000 (22:36 -0600)
committerPaul 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

index 22726aefc8ea6d3cb68cb8808a0b0859343cafce..b53d677f6742d521867e9512be1e86e45041eae4 100644 (file)
@@ -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)