From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:35371) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RsiOe-0006ff-UT for qemu-devel@nongnu.org; Wed, 01 Feb 2012 17:11:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RsiOd-0008N4-FG for qemu-devel@nongnu.org; Wed, 01 Feb 2012 17:11:20 -0500 Message-ID: <4F29B882.4040209@codemonkey.ws> Date: Wed, 01 Feb 2012 16:11:14 -0600 From: Anthony Liguori MIME-Version: 1.0 References: <4F1DA82F.4090808@siemens.com> <4F2297FB.2040508@siemens.com> <4F267095.6010207@siemens.com> In-Reply-To: <4F267095.6010207@siemens.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v3] optionroms: Silence intermediate file removal List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Jan Kiszka Cc: qemu-trivial , qemu-devel , Stefan Hajnoczi , =?ISO-8859-1?Q?Andreas_F=E4rber?= On 01/30/2012 04:27 AM, Jan Kiszka wrote: > The build process of optionroms spits out an "rm ..." line. Moreover, it > removes all .o files that can be handy for debugging purposes. So > disable automatic intermediate removal. > > Signed-off-by: Jan Kiszka Applied. Thanks. Regards, Anthony Liguori > --- > > Changes in v3: > - do not remove intermediate file manually, it breaks parallel build > > pc-bios/optionrom/Makefile | 3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) > > diff --git a/pc-bios/optionrom/Makefile b/pc-bios/optionrom/Makefile > index 51da288..2caf7e6 100644 > --- a/pc-bios/optionrom/Makefile > +++ b/pc-bios/optionrom/Makefile > @@ -16,6 +16,9 @@ QEMU_CFLAGS = $(CFLAGS) > > build-all: multiboot.bin linuxboot.bin > > +# suppress auto-removal of intermediate files > +.SECONDARY: > + > %.img: %.o > $(call quiet-command,$(LD) -Ttext 0 -e _start -s -o $@ $<," Building $(TARGET_DIR)$@") >