libcamera: Build IPA module signatures by default

Commit 7206035ee6 ("libcamera: Regenerate IPA module signatures at
install time") replaced installation of the IPA module signatures with
an install script that signs all modules. While doing so, it
inadvertently also disabled generation of the signature at build time by
default. This breaks running libcamera binaries from the build
directory. Fix it.

Fixes: 7206035ee6 ("libcamera: Regenerate IPA module signatures at install time")
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
This commit is contained in:
Laurent Pinchart 2020-04-30 04:13:48 +03:00
parent 9e41dfbbff
commit 25a101846d
2 changed files with 4 additions and 2 deletions

View file

@ -14,5 +14,6 @@ if ipa_sign_module
input : mod, input : mod,
output : ipa_name + '.so.sign', output : ipa_name + '.so.sign',
command : [ ipa_sign, ipa_priv_key, '@INPUT@', '@OUTPUT@' ], command : [ ipa_sign, ipa_priv_key, '@INPUT@', '@OUTPUT@' ],
install : false) install : false,
build_by_default : true)
endif endif

View file

@ -14,7 +14,8 @@ if ipa_sign_module
input : mod, input : mod,
output : ipa_name + '.so.sign', output : ipa_name + '.so.sign',
command : [ ipa_sign, ipa_priv_key, '@INPUT@', '@OUTPUT@' ], command : [ ipa_sign, ipa_priv_key, '@INPUT@', '@OUTPUT@' ],
install : false) install : false,
build_by_default : true)
endif endif
subdir('data') subdir('data')