From 336cb6a67b9a1767cb6f514d9293bf7ba41a9f3a Mon Sep 17 00:00:00 2001 From: varris1 <38386180+varris1@users.noreply.github.com> Date: Wed, 11 Jul 2018 19:26:45 +0200 Subject: [PATCH] [build] Moved git command into the command list (#493) According to the meson documentation, vcs commands need to be a part of the command string list. Right now, it pulls the version number no matter what. --- meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index f0a01e7a1..6c6ecb937 100644 --- a/meson.build +++ b/meson.build @@ -35,7 +35,8 @@ glsl_generator = generator(glsl_compiler, output : [ '@BASENAME@.h' ], arguments : [ '-V', '--vn', '@BASENAME@', '@INPUT@', '-o', '@OUTPUT@' ]) -dxvk_version = vcs_tag(['git', 'describe'], +dxvk_version = vcs_tag( + command: ['git', 'describe'], input: 'version.h.in', output: 'version.h')