Previously, if boot was enabled but ukify wasn't, the check for the pefile
Python module would be omitted. The check in want_ukify was incorrect — with
Meson it's only possible to check for Python dependencies available for the
build Python. When the build Python is not the same as the Python that will be
used to run the installed ukify, this would incorrectly require ukify to be
available to the build Python. The most common, but not the only case where
this would happen would be when cross compiling. If bootloader and tests are
disabled, there's no need for the build Python to have pefile even when
installing ukify. Therefore, check in the more specific case of ukify's tests
being enabled, in which case pefile is required at build time.
efi_cpu_family_alt = 'x86'
endif
-want_ukify = pymod.find_installation('python3', required: get_option('ukify'), modules : ['pefile']).found()
+want_ukify = get_option('ukify').allowed()
conf.set10('ENABLE_UKIFY', want_ukify)
#####################################################################