From: Eli Schwartz Date: Thu, 5 May 2022 03:52:31 +0000 (-0400) Subject: meson: get the project version from the version-gen script X-Git-Tag: v2.39-rc1~668^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e0c1a86bf88b568a7afe8ebaea1b9f84afb892c2;p=thirdparty%2Futil-linux.git meson: get the project version from the version-gen script This matches autotools and ensures that the version number is actually reliable. --- diff --git a/meson.build b/meson.build index 09479c4388..39f12245e0 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('util-linux', 'c', - version : '2.37', + version : run_command('tools/git-version-gen', check: true).stdout(), meson_version: '>=0.53.0', license : 'GPLv2+')