From: Luca Boccassi Date: Tue, 11 Sep 2018 20:42:35 +0000 (+0100) Subject: build: use same version as make showversion in meson X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=282628a2315e6ce3def42de75abd44e552be0bf2;hp=98d05387961fcd1d7524d6ac09f6af09ea5d86d3;p=dpdk.git build: use same version as make showversion in meson make showversion will print 18.11.0-rc0 but Meson sets 18.11-rc0, causing among other things a difference in the generated documentation. Fixes: 76b9d9de5c7d ("version: 18.11-rc0") Signed-off-by: Luca Boccassi Acked-by: Thomas Monjalon Acked-by: Bruce Richardson --- diff --git a/meson.build b/meson.build index 2ed1247a3d..5f18172829 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ # Copyright(c) 2017 Intel Corporation project('DPDK', 'C', - version: '18.11-rc0', + version: '18.11.0-rc0', license: 'BSD', default_options: ['buildtype=release', 'default_library=static'], meson_version: '>= 0.41'