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 D7B36DDE9B for ; Fri, 17 Aug 2007 22:53:45 +1000 (EST) In-Reply-To: <20070817181352.d29117be.sfr@canb.auug.org.au> References: <20070817181352.d29117be.sfr@canb.auug.org.au> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: From: Kumar Gala Subject: Re: [PATCH 3/3] [POWERPC] Stop include asm-ppc when building ARCH=powerpc for ppc32 Date: Fri, 17 Aug 2007 07:55:25 -0500 To: Stephen Rothwell Cc: linuxppc-dev@ozlabs.org, Paul Mackerras List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Aug 17, 2007, at 3:13 AM, Stephen Rothwell wrote: > On Fri, 17 Aug 2007 02:15:54 -0500 (CDT) Kumar Gala > wrote: >> >> @@ -172,18 +168,15 @@ install: >> archclean: >> $(Q)$(MAKE) $(clean)=$(boot) >> >> -archmrproper: >> - $(Q)rm -rf arch/$(ARCH)/include >> - >> archprepare: checkbin >> >> -ifeq ($(CONFIG_PPC32),y) >> -# Temporary hack until we have migrated to asm-powerpc >> -include/asm: arch/$(ARCH)/include/asm >> -arch/$(ARCH)/include/asm: FORCE >> - $(Q)if [ ! -d arch/$(ARCH)/include ]; then mkdir -p arch/$(ARCH)/ >> include; fi >> - $(Q)ln -fsn $(srctree)/include/asm-$(OLDARCH) arch/$(ARCH)/ >> include/asm >> -endif >> +#ifeq ($(CONFIG_PPC32),y) >> +## Temporary hack until we have migrated to asm-powerpc >> +#include/asm: arch/$(ARCH)/include/asm >> +#arch/$(ARCH)/include/asm: FORCE >> +# $(Q)if [ ! -d arch/$(ARCH)/include ]; then mkdir -p arch/$ >> (ARCH)/include; fi >> +# $(Q)ln -fsn $(srctree)/include/asm-$(OLDARCH) arch/$(ARCH)/ >> include/asm >> +#endif > > Why not just remove it? git will preserve it if we find a use for it. oops, that was a debug foobar.. should have been removed. Now fixed, got to love git-commit --amend. - k