From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate.crashing.org (gate.crashing.org [63.228.1.57]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTP id A299A689DD for ; Wed, 11 Jan 2006 15:42:55 +1100 (EST) Date: Tue, 10 Jan 2006 22:36:37 -0600 (CST) From: Kumar Gala To: Paul Mackerras Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: linuxppc-dev@ozlabs.org, linuxppc64-dev@gate.crashing.org, linux-kernel@vger.kernel.org Subject: [PATCH] powerpc: Fix arch/powerpc/boot Makefile List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , clean-files was being set twice rather than being appended to. Signed-off-by: Kumar Gala --- commit aa30a75885b935a7f09a1312e792f96cc338e505 tree 2be29cf7aacbf9ac89e3c99dcf0a0502e940ae36 parent b718d4872e6ad557b9751785b596ed57b9e6b023 author Kumar Gala Tue, 10 Jan 2006 22:41:48 -0600 committer Kumar Gala Tue, 10 Jan 2006 22:41:48 -0600 arch/powerpc/boot/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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)