From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51300) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aGQSb-0001Hz-43 for qemu-devel@nongnu.org; Tue, 05 Jan 2016 07:11:34 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aGQSY-0000Nw-JB for qemu-devel@nongnu.org; Tue, 05 Jan 2016 07:11:33 -0500 Received: from mx1.redhat.com ([209.132.183.28]:32835) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aGQSY-0000NT-E1 for qemu-devel@nongnu.org; Tue, 05 Jan 2016 07:11:30 -0500 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (Postfix) with ESMTPS id C90C3C00354F for ; Tue, 5 Jan 2016 12:11:28 +0000 (UTC) From: Gerd Hoffmann Date: Tue, 5 Jan 2016 13:11:20 +0100 Message-Id: <1451995883-28641-3-git-send-email-kraxel@redhat.com> In-Reply-To: <1451995883-28641-1-git-send-email-kraxel@redhat.com> References: <1451995883-28641-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PULL 2/5] seabios: use new EXTRAVERSION to tag qemu builds List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Signed-off-by: Gerd Hoffmann --- roms/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roms/Makefile b/roms/Makefile index 09e33b5..01f2701 100644 --- a/roms/Makefile +++ b/roms/Makefile @@ -35,7 +35,7 @@ powerpc_cross_prefix := $(call find-cross-prefix,powerpc) x86_64_cross_prefix := $(call find-cross-prefix,x86_64) # tag our seabios builds -SEABIOS_VERSION="$(shell cd seabios; git describe --tags --long) by qemu-project.org" +SEABIOS_EXTRAVERSION="-prebuilt.qemu-project.org" # # EfiRom utility is shipped with edk2 / tianocore, in BaseTools/ @@ -78,12 +78,12 @@ build-seabios-config-%: config.% mkdir -p seabios/builds/$* cp $< seabios/builds/$*/.config $(MAKE) -C seabios \ - VERSION=$(SEABIOS_VERSION) \ + EXTRAVERSION=$(SEABIOS_EXTRAVERSION) \ CROSS_COMPILE=$(x86_64_cross_prefix) \ KCONFIG_CONFIG=$(CURDIR)/seabios/builds/$*/.config \ OUT=$(CURDIR)/seabios/builds/$*/ oldnoconfig $(MAKE) -C seabios \ - VERSION=$(SEABIOS_VERSION) \ + EXTRAVERSION=$(SEABIOS_EXTRAVERSION) \ CROSS_COMPILE=$(x86_64_cross_prefix) \ KCONFIG_CONFIG=$(CURDIR)/seabios/builds/$*/.config \ OUT=$(CURDIR)/seabios/builds/$*/ all -- 1.8.3.1