[oe-commits] [openembedded-core] 05/08: toolchain-scripts: print post-relocate error

git at git.openembedded.org git at git.openembedded.org
Tue Jun 5 08:55:51 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 2ed6d133f1cd14ebf141b07710c67bccc3cd469d
Author: Martin Kelly <mkelly at xevo.com>
AuthorDate: Mon Jun 4 16:05:59 2018 -0700

    toolchain-scripts: print post-relocate error
    
    Currently, if a post-relocate script fails, it fails silently. We should
    be louder about this, as it likely indicates a broken SDK.
    
    Print a message if a post-relocate script fails.
    
    Signed-off-by: Martin Kelly <mkelly at xevo.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/toolchain-scripts.bbclass | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/meta/classes/toolchain-scripts.bbclass b/meta/classes/toolchain-scripts.bbclass
index 7e2f8be..779cc3f 100644
--- a/meta/classes/toolchain-scripts.bbclass
+++ b/meta/classes/toolchain-scripts.bbclass
@@ -129,6 +129,11 @@ if [ -d "${SDKPATHNATIVE}/post-relocate-setup.d/" ]; then
             continue
         fi
         \$s "\$1"
+        status=\$?
+        if [ \$status != 0 ]; then
+            echo "post-relocate command \"\$s \$1\" failed with status \$status" >&2
+            exit \$status
+        fi
     done
     rm -rf "${SDKPATHNATIVE}/post-relocate-setup.d"
 fi

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list