From 4f12c1370433c9c472c927b30639252b3e192f18 Mon Sep 17 00:00:00 2001 From: Miguel Bernal Marin Date: Tue, 10 Mar 2020 11:38:15 -0600 Subject: [PATCH] fix device model display version Remove quotation marks from build version and tag to be likely upstream version. The tag will be 20XXwYY.Z.140000p due to autospec requeriments. Please note the change between upstream tag which is the "-" between Z and 140000p. resolves https://github.com/projectacrn/acrn-hypervisor/issues/4132 --- acrn-hypervisor.spec | 2 +- make_args | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/acrn-hypervisor.spec b/acrn-hypervisor.spec index 6510ae8..e93ae5f 100644 --- a/acrn-hypervisor.spec +++ b/acrn-hypervisor.spec @@ -142,7 +142,7 @@ export CFLAGS="$CFLAGS -fno-lto " export FCFLAGS="$CFLAGS -fno-lto " export FFLAGS="$CFLAGS -fno-lto " export CXXFLAGS="$CXXFLAGS -fno-lto " -make %{?_smp_mflags} RELEASE=0 all sbl-hypervisor BUILD_VERSION=”%{version}_%{release}” BUILD_TAG=”%{version}” +make %{?_smp_mflags} RELEASE=0 all sbl-hypervisor BUILD_VERSION=%{version}_%{release} BUILD_TAG=acrn-%{version} %install diff --git a/make_args b/make_args index c344225..816db39 100644 --- a/make_args +++ b/make_args @@ -1 +1 @@ -RELEASE=0 all sbl-hypervisor BUILD_VERSION=”%{version}_%{release}” BUILD_TAG=”%{version}” +RELEASE=0 all sbl-hypervisor BUILD_VERSION=%{version}_%{release} BUILD_TAG=acrn-%{version}