From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:32874) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZG6lt-0000S7-G0 for qemu-devel@nongnu.org; Fri, 17 Jul 2015 10:37:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZG6lj-0003N4-FG for qemu-devel@nongnu.org; Fri, 17 Jul 2015 10:37:51 -0400 Received: from mx1.redhat.com ([209.132.183.28]:51061) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZG6lj-0003Ma-AQ for qemu-devel@nongnu.org; Fri, 17 Jul 2015 10:37:43 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (Postfix) with ESMTPS id DF96E19F247 for ; Fri, 17 Jul 2015 14:37:42 +0000 (UTC) From: Gerd Hoffmann Date: Fri, 17 Jul 2015 16:37:30 +0200 Message-Id: <1437143854-2826-4-git-send-email-kraxel@redhat.com> In-Reply-To: <1437143854-2826-1-git-send-email-kraxel@redhat.com> References: <1437143854-2826-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PULL 3/7] ipxe: rm local config in cleanup List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann ipxe build now generates empty local header files in case they are not present. Let's remove them on cleanup to make sure we store a fresh copy on the next build. Signed-off-by: Gerd Hoffmann Acked-by: Laszlo Ersek --- roms/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/roms/Makefile b/roms/Makefile index 7b3f156..c0153c7 100644 --- a/roms/Makefile +++ b/roms/Makefile @@ -153,5 +153,6 @@ clean: $(MAKE) -C sgabios clean rm -f sgabios/.depend $(MAKE) -C ipxe/src veryclean + (cd ipxe; rm -f src/config/local/*.h) $(MAKE) -C SLOF clean rm -rf u-boot/build.e500 -- 1.8.3.1