From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48628) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YgZkS-0004vV-BO for qemu-devel@nongnu.org; Fri, 10 Apr 2015 10:17:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YgZkP-0007CR-Vw for qemu-devel@nongnu.org; Fri, 10 Apr 2015 10:17:32 -0400 Received: from mx1.redhat.com ([209.132.183.28]:37317) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YgZkP-0007CF-R2 for qemu-devel@nongnu.org; Fri, 10 Apr 2015 10:17:29 -0400 From: Gerd Hoffmann Date: Fri, 10 Apr 2015 16:17:11 +0200 Message-Id: <1428675432-31433-7-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 6/7] ipxe: don't override GITVERSION List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: ipxe-devel@ipxe.org, Gerd Hoffmann We had build problems due to the git version checking in the ipxe build system in the past. Don't remember the details, but the problem seems to be gone now, so lets remove the workaround. Signed-off-by: Gerd Hoffmann --- roms/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roms/Makefile b/roms/Makefile index 4a52d6b..d99c977 100644 --- a/roms/Makefile +++ b/roms/Makefile @@ -116,12 +116,12 @@ efi-rom-%: build-pxe-roms build-efi-roms -o ../pc-bios/efi-$*.rom build-pxe-roms: ipxe/qemu-patches ipxe/src/config/local/general.h ipxe/src/config/local/branding.h - $(MAKE) -C ipxe/src GITVERSION="" \ + $(MAKE) -C ipxe/src \ CROSS_COMPILE=$(x86_64_cross_prefix) \ $(patsubst %,bin/%.rom,$(pxerom_targets)) build-efi-roms: ipxe/qemu-patches build-pxe-roms ipxe/src/config/local/general.h ipxe/src/config/local/branding.h - $(MAKE) -C ipxe/src GITVERSION="" \ + $(MAKE) -C ipxe/src \ CROSS_COMPILE=$(x86_64_cross_prefix) \ $(patsubst %,bin-i386-efi/%.efidrv,$(pxerom_targets)) \ $(patsubst %,bin-x86_64-efi/%.efidrv,$(pxerom_targets)) -- 1.8.3.1