From 7e5b19793d0519ec761f2bcf6591a4c995de3894 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Thu, 2 Nov 2023 18:10:10 +0400 Subject: [PATCH] build-sys: fix meson project version usage MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Program wixl found: YES (/usr/bin/wixl) ../qga/meson.build:149:16: ERROR: Unknown variable "project". Fixes: e20d68aa0b9 ("configure, meson: use command line options to configure qemu-ga") Signed-off-by: Marc-André Lureau Reviewed-by: Konstantin Kostiuk Signed-off-by: Konstantin Kostiuk --- qga/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qga/meson.build b/qga/meson.build index 940a51d55d..ff7a8496e4 100644 --- a/qga/meson.build +++ b/qga/meson.build @@ -146,7 +146,7 @@ if targetos == 'windows' libpcre = 'libpcre2' endif qga_msi_version = get_option('qemu_ga_version') == '' \ - ? project.version() \ + ? meson.project_version() \ : get_option('qemu_ga_version') qga_msi = custom_target('QGA MSI', input: files('installer/qemu-ga.wxs'),