From cd96646039822324a2a736c2531c7c678bcd3012 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Thu, 8 Mar 2018 08:27:10 +1000 Subject: meson.build: fix vcs_tag fallback argument This needs to be specified as keyword argument, and meson < 0.41 doesn't allow for a missing fallback. Signed-off-by: Peter Hutterer --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 8591162c..aee863f3 100644 --- a/meson.build +++ b/meson.build @@ -240,8 +240,8 @@ pkgconfig.generate( libraries : lib_libinput ) -git_version_h = vcs_tag(['git', 'describe'], - 'unknown', +git_version_h = vcs_tag(command : ['git', 'describe'], + fallback : 'unknown', input : 'src/libinput-git-version.h.in', output :'libinput-git-version.h') -- cgit v1.2.1