From 5dc3eb72c4b9b68ab13310383a90fe7779bf92a7 Mon Sep 17 00:00:00 2001 From: David Nyström Date: Sun, 29 Sep 2013 21:44:23 +0000 Subject: nss: Fix return codes in postinstall MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit exit 0 was done if $D != NULL, if one or more shlibsign executions fails. Signed-off-by: David Nyström Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- meta/recipes-support/nss/nss.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/recipes-support/nss/nss.inc b/meta/recipes-support/nss/nss.inc index 11f1b7f849..2b2b668762 100644 --- a/meta/recipes-support/nss/nss.inc +++ b/meta/recipes-support/nss/nss.inc @@ -168,6 +168,9 @@ pkg_postinst_${PN} () { BN=`basename $I .chk` FN=$DN/$BN.so shlibsign -i $FN + if [ $? -ne 0 ]; then + exit 1 + fi done exit 0 fi -- cgit 1.2.3-korg