summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support')
-rw-r--r--meta/recipes-support/nss/nss.inc8
1 files changed, 7 insertions, 1 deletions
diff --git a/meta/recipes-support/nss/nss.inc b/meta/recipes-support/nss/nss.inc
index e2f3891ba7..11f1b7f849 100644
--- a/meta/recipes-support/nss/nss.inc
+++ b/meta/recipes-support/nss/nss.inc
@@ -163,7 +163,13 @@ do_install_append_class-target() {
163 163
164pkg_postinst_${PN} () { 164pkg_postinst_${PN} () {
165 if [ -n "$D" ]; then 165 if [ -n "$D" ]; then
166 exit 1 166 for I in $D/${libdir}/lib*.chk; do
167 DN=`dirname $I`
168 BN=`basename $I .chk`
169 FN=$DN/$BN.so
170 shlibsign -i $FN
171 done
172 exit 0
167 fi 173 fi
168 signlibs.sh 174 signlibs.sh
169} 175}