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 <peter.hutterer@who-t.net>
This commit is contained in:
Peter Hutterer 2018-03-08 08:27:10 +10:00
parent 2ab233857d
commit cd96646039

View file

@ -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')