[OE-core] [PATCH] nss: Fix return codes in postinstall

David Nyström david.c.nystrom at gmail.com
Sun Sep 29 21:44:23 UTC 2013


exit 0 was done if $D != NULL, if one or more
shlibsign executions fails.

Signed-off-by: David Nyström <david.nystrom at enea.com>
---
 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 11f1b7f..2b2b668 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
-- 
1.8.3.2




More information about the Openembedded-core mailing list