summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsrc/ipa/ipa-sign-install.sh12
-rw-r--r--src/ipa/meson.build6
2 files changed, 12 insertions, 6 deletions
diff --git a/src/ipa/ipa-sign-install.sh b/src/ipa/ipa-sign-install.sh
index 5317a8a2..bcedb8b5 100755
--- a/src/ipa/ipa-sign-install.sh
+++ b/src/ipa/ipa-sign-install.sh
@@ -6,13 +6,17 @@
#
# ipa-sign-install.sh - Regenerate IPA module signatures when installing
-libdir=$1
-key=$2
+key=$1
+shift
+modules=$*
ipa_sign=$(dirname "$0")/ipa-sign.sh
echo "Regenerating IPA modules signatures"
-for module in "${MESON_INSTALL_DESTDIR_PREFIX}/${libdir}"/*.so ; do
- "${ipa_sign}" "${key}" "${module}" "${module}.sign"
+for module in ${modules} ; do
+ module="${MESON_INSTALL_DESTDIR_PREFIX}/${module}"
+ if [ -f "${module}" ] ; then
+ "${ipa_sign}" "${key}" "${module}" "${module}.sign"
+ fi
done
diff --git a/src/ipa/meson.build b/src/ipa/meson.build
index 64deb601..ab73c347 100644
--- a/src/ipa/meson.build
+++ b/src/ipa/meson.build
@@ -21,10 +21,12 @@ subdir('libipa')
ipa_sign = files('ipa-sign.sh')
ipas = ['raspberrypi', 'rkisp1', 'vimc']
+ipa_names = []
foreach pipeline : get_option('pipelines')
if ipas.contains(pipeline)
subdir(pipeline)
+ ipa_names += join_paths(ipa_install_dir, ipa_name + '.so')
endif
endforeach
@@ -33,6 +35,6 @@ if ipa_sign_module
# .sign files, as meson strips the DT_RPATH and DT_RUNPATH from binaries at
# install time, which invalidates the signatures.
meson.add_install_script('ipa-sign-install.sh',
- ipa_install_dir,
- ipa_priv_key.full_path())
+ ipa_priv_key.full_path(),
+ ipa_names)
endif