From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-in-05.arcor-online.net (mail-in-05.arcor-online.net [151.189.21.45]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mx.arcor.de", Issuer "Thawte Premium Server CA" (verified OK)) by ozlabs.org (Postfix) with ESMTP id A4A33DDF33 for ; Wed, 21 Mar 2007 02:53:03 +1100 (EST) In-Reply-To: References: Mime-Version: 1.0 (Apple Message framework v623) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: From: Segher Boessenkool Subject: Re: [PATCH 3/7] boot: use FORCE Date: Tue, 20 Mar 2007 16:52:56 +0100 To: Milton Miller 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: , > quiet_cmd_bootar = BOOTAR $@ > - cmd_bootar = $(CROSS32AR) -cr $@.$$$$ $^; mv $@.$$$$ $@ > + cmd_bootar = $(CROSS32AR) -cr $@.$$$$ $(filter-out FORCE,$^); > mv $@.$$$$ $@ Is there no way to do this without using filter-out? It's ugly and a bit fragile. Oh and it shouldn't be ; but && (not your fault, but while you're at it...) Segher