From 58b26fb0b86ebad2b1aa3e0bffb3433df1925abf Mon Sep 17 00:00:00 2001 From: Andrew Cooper Date: Tue, 12 Mar 2019 11:38:03 +0000 Subject: [PATCH] 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 --- xen/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5