From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f68.google.com (mail-wm0-f68.google.com [74.125.82.68]) by dpdk.org (Postfix) with ESMTP id 622A25699 for ; Fri, 7 Sep 2018 18:55:36 +0200 (CEST) Received: by mail-wm0-f68.google.com with SMTP id f21-v6so15380307wmc.5 for ; Fri, 07 Sep 2018 09:55:36 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=QZ6su0HaCQ2SXZVfeoZmv24yoRwFSCHP8C2B5VHP1Kw=; b=c6L54bFIX0uwpbZJBecqalPNAUUHERrCKjmtwrhystYjkXaAGKPvjY+axt2UNIbh5S yEjZ7L6izVcejO4pL2JJplQUfMfGsGZ33JZ+2RTS4DAqCSQ9kpW+Qt26hyW6YQfLLv79 KkMIAb8hmOvNi0aLtiY8rsnY4L4hSXVa8vmUiffhBiemeYHC4mdEZ8EZHHBR03a83aYm uzebLUgTCII0R6SIvBnhyizU+mVU3PUm53sszYIOkhfmgrEIn2pwkn+0ApYXcFpsW3CJ eFhcasH3NOBi5kWy3mz+kzVcIxjbD4U8W4cWt2ZTFbtLbvUF81v0o1LuWUplKnqERrre 2JRg== X-Gm-Message-State: APzg51BuOQBODXCRE6RI6g7oIHPFwul8k4Zs9lW3CkRqRKtQbQBXxdVZ Nz5k9XmfVWQNkAYwHmWEXbOaNZUJgdc= X-Google-Smtp-Source: ANB0VdbpTBGBHcBUUIFNAq9ZpNRlH93ptgK0U+tkR5eRjrs4Ql5yF86zOd3O06K2fwxj6bMEOgQSmg== X-Received: by 2002:a1c:7301:: with SMTP id d1-v6mr5574390wmb.34.1536339335767; Fri, 07 Sep 2018 09:55:35 -0700 (PDT) Received: from localhost ([2a01:4b00:f419:6f00:8361:8946:ba2b:d556]) by smtp.gmail.com with ESMTPSA id t70-v6sm5592849wmt.30.2018.09.07.09.55.34 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Fri, 07 Sep 2018 09:55:34 -0700 (PDT) From: Luca Boccassi To: dev@dpdk.org Cc: bruce.richardson@intel.com, john.mcnamara@intel.com, marko.kovacevic@intel.com, thomas@monjalon.net Date: Fri, 7 Sep 2018 17:55:23 +0100 Message-Id: <20180907165524.23982-3-bluca@debian.org> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20180907165524.23982-1-bluca@debian.org> References: <20180831182055.30772-1-bluca@debian.org> <20180907165524.23982-1-bluca@debian.org> Subject: [dpdk-dev] [PATCH v2 3/4] build: use same version as make showversion in Meson X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Sep 2018 16:55:36 -0000 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 --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 84af32ecef..9999e8640a 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' -- 2.18.0