diff options
author | Qyriad <qyriad@qyriad.me> | 2024-04-22 15:39:22 -0600 |
---|---|---|
committer | Qyriad <qyriad@qyriad.me> | 2024-04-22 21:41:58 -0600 |
commit | 05e3b1d39eee5632d143ccd5a382b9d1ffe79fa6 (patch) | |
tree | d7736ab52886b6b2740cbb7a32672e87d8b78b03 /src/libstore/meson.build | |
parent | 111db8b38fd8350d92d72fa17fd3d9e8ef5a0e09 (diff) |
meson: fix cross compilation
This should fix cross compilation in the base case, but this is
difficult to test as cross compilation is broken in many different
places right now. This should bring Meson back up to cross parity with
the Make buildsystem though.
Change-Id: If09be8142d1fc975a82b994143ff35be1297dad8
Diffstat (limited to 'src/libstore/meson.build')
-rw-r--r-- | src/libstore/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/meson.build b/src/libstore/meson.build index e1c6c267a..a6d7e6d56 100644 --- a/src/libstore/meson.build +++ b/src/libstore/meson.build @@ -11,7 +11,7 @@ foreach header : [ 'schema.sql', 'ca-specific-schema.sql' ] endforeach if enable_embedded_sandbox_shell - hexdump = find_program('hexdump', required : true) + hexdump = find_program('hexdump', required : true, native : true) embedded_sandbox_shell_gen = custom_target( 'embedded-sandbox-shell.gen.hh', command : [ |