Revert "python/build/meson.py: keep Meson from executing Android-x86 test binaries"

This reverts commit 8ab2722300.  The
"needs_exe_wrapper" setting was already there, and the new one was
misplaced, it belongs in "[properties]".
This commit is contained in:
Max Kellermann 2023-03-21 09:46:25 +01:00
parent 2506edbffb
commit 91123983ad

View File

@ -69,12 +69,6 @@ c_link_args = {repr(toolchain.ldflags.split() + toolchain.libs.split())}
cpp_args = {repr((toolchain.cppflags + ' ' + toolchain.cxxflags).split())}
cpp_link_args = {repr(toolchain.ldflags.split() + toolchain.libs.split())}
""")
if 'android' in toolchain.actual_arch:
f.write("""
# Keep Meson from executing Android-x86 test binaries
needs_exe_wrapper = true
""")
f.write(f"""