From: Andrew Cooper Date: Tue, 12 Mar 2019 11:38:03 +0000 (+0000) Subject: xen: Fix XEN_EXTRAVERSION after c/s 100507b34 branching for 4.13 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=58b26fb0b86ebad2b1aa3e0bffb3433df1925abf;p=people%2Fliuw%2Fxen.git xen: Fix XEN_EXTRAVERSION after c/s 100507b34 branching for 4.13 The update to README and SUPPORT.md where correct, but XEN_EXTRAVERSION had an additional .0 slip in. Signed-off-by: Andrew Cooper Acked-by: Wei Liu --- diff --git a/xen/Makefile b/xen/Makefile index 335f2f0f37..1fd8ad5116 100644 --- a/xen/Makefile +++ b/xen/Makefile @@ -2,7 +2,7 @@ # All other places this is stored (eg. compile.h) should be autogenerated. export XEN_VERSION = 4 export XEN_SUBVERSION = 13 -export XEN_EXTRAVERSION ?= .0-unstable$(XEN_VENDORVERSION) +export XEN_EXTRAVERSION ?= -unstable$(XEN_VENDORVERSION) export XEN_FULLVERSION = $(XEN_VERSION).$(XEN_SUBVERSION)$(XEN_EXTRAVERSION) -include xen-version