[meson] build ragel as a native tool

When cross compiling it will build a target (host) binary that can't be run on the building machine.

Also remove the install flag which is not compatible with the native flag, but the custom built ragel is correctly picked.
This commit is contained in:
Steve Lhomme 2024-05-13 11:01:58 +02:00 committed by خالد حسني (Khaled Hosny)
parent 31c45e841f
commit 6253b3a905

View file

@ -62,5 +62,5 @@ ragel = executable(
meson.project_name(),
ragel_sources,
include_directories : ['aapl', 'ragel'],
install : true,
native : true,
)