From b382f67c833de08717cfec19273b95f5819cab27 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Thu, 16 Apr 2020 14:49:24 +0300 Subject: libcamera: Make IPA module signing mandatory for the meantime IPA module signing is optional, but when not available due to missing dependencies, we hit failures due to a non fully implemented IPA isolation. Make module signing mandatory until isolation is functional. Signed-off-by: Laurent Pinchart Reviewed-by: Kieran Bingham --- src/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/meson.build') diff --git a/src/meson.build b/src/meson.build index 29668275..f605a420 100644 --- a/src/meson.build +++ b/src/meson.build @@ -2,7 +2,7 @@ if get_option('android') subdir('android') endif -openssl = find_program('openssl', required : false) +openssl = find_program('openssl', required : true) if openssl.found() ipa_gen_priv_key = find_program('ipa/gen-ipa-priv-key.sh') ipa_priv_key = custom_target('ipa-priv-key', -- cgit v1.2.1