From: Kumar Gala Date: Wed, 11 Jan 2006 04:36:37 +0000 (-0600) Subject: [PATCH] powerpc: Fix clean_files in arch/powerpc/boot Makefile X-Git-Tag: v2.6.16-rc1~425^2~1 X-Git-Url: http://ftp.safe.ca/?a=commitdiff_plain;h=886c98d78652f78a64cb21516d3b25ffd5c05e94;p=safe%2Fjmp%2Flinux-2.6 [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 Signed-off-by: Paul Mackerras --- diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile index 22726ae..b53d677 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)