From 582d499e32e75beb5428366d48504cb207cbc7ae Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Tue, 17 Feb 2026 21:07:27 +0900 Subject: [PATCH] meson: ukify unconditionally requires pefile module Follow-up for 3fc5eed47091363247012454df458e1a3303bf12. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index ee96fcb21f7..0361bc5904a 100644 --- a/meson.build +++ b/meson.build @@ -1898,7 +1898,7 @@ endif pefile = pymod.find_installation('python3', required: false, modules : ['pefile']) -want_ukify = get_option('ukify').require(python_39 and (want_tests != 'true' or pefile.found()), error_message : 'Python >= 3.9 and pefile required').allowed() +want_ukify = get_option('ukify').require(python_39 and pefile.found(), error_message : 'Python >= 3.9 and pefile required').allowed() conf.set10('ENABLE_UKIFY', want_ukify) ##################################################################### -- 2.47.3