From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48611) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YgZkR-0004vT-Fs for qemu-devel@nongnu.org; Fri, 10 Apr 2015 10:17:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YgZkO-0007Bk-Q1 for qemu-devel@nongnu.org; Fri, 10 Apr 2015 10:17:31 -0400 Received: from mx1.redhat.com ([209.132.183.28]:51603) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YgZkO-0007BY-Kh for qemu-devel@nongnu.org; Fri, 10 Apr 2015 10:17:28 -0400 From: Gerd Hoffmann Date: Fri, 10 Apr 2015 16:17:07 +0200 Message-Id: <1428675432-31433-3-git-send-email-kraxel@redhat.com> In-Reply-To: <1428675432-31433-1-git-send-email-kraxel@redhat.com> References: <1428675432-31433-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 2/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: ipxe-devel@ipxe.org, Gerd Hoffmann ipxe build now generates empty local header files in case they are not preset. Let's remove them on cleanup to make sure we store a fresh copy on the next build. Signed-off-by: Gerd Hoffmann --- roms/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/roms/Makefile b/roms/Makefile index 610b534..461cb49 100644 --- a/roms/Makefile +++ b/roms/Makefile @@ -148,5 +148,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