From: Paolo Bonzini <[email protected]> The update to Python 3.13 causes meson configuration to fail, see e.g.:
https://gitlab.com/qemu-project/qemu/-/jobs/12672816538#L397 meson.build:1:0: ERROR: prefix value '/qemu' must be an absolute path This is https://github.com/mesonbuild/meson/issues/14303. Remove the prefix='/qemu' line in configs/meson/windows.txt, since commit d17f305a264 ("configure: use a platform-neutral prefix", 2020-09-30) says that the NSIS installer doesn't care. Cc: [email protected] Cc: Thomas Huth <[email protected]> Signed-off-by: Paolo Bonzini <[email protected]> Reviewed-by: Thomas Huth <[email protected]> Signed-off-by: Richard Henderson <[email protected]> Message-ID: <[email protected]> (cherry picked from commit 894c8bd56ff1d25127efa4ba9ee8cf4dd0670b1a) Signed-off-by: Michael Tokarev <[email protected]> diff --git a/configs/meson/windows.txt b/configs/meson/windows.txt index 55b192e71b..9ef0fb3c8f 100644 --- a/configs/meson/windows.txt +++ b/configs/meson/windows.txt @@ -3,7 +3,6 @@ [built-in options] bindir = '' -prefix = '/qemu' [project options] qemu_suffix = '' -- 2.47.3
