[oe-commits] [openembedded-core] 03/13: yocto-check-layer-wrapper: Fix path for oe-init-build-env

git at git.openembedded.org git at git.openembedded.org
Tue Feb 12 22:01:50 UTC 2019


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 0554e5361f392a9b346b5482e7c711ba9f8913a3
Author: Robert Yang <liezhi.yang at windriver.com>
AuthorDate: Tue Feb 12 18:16:41 2019 +0800

    yocto-check-layer-wrapper: Fix path for oe-init-build-env
    
    We only could run it in top of oe-core dir since it assumed oe-init-build-env
    was in cwd, this patch fixes the problem.
    
    [YOCTO #13148]
    
    Signed-off-by: Robert Yang <liezhi.yang at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 scripts/yocto-check-layer-wrapper | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/scripts/yocto-check-layer-wrapper b/scripts/yocto-check-layer-wrapper
index bbf6ee1..b5df9ce 100755
--- a/scripts/yocto-check-layer-wrapper
+++ b/scripts/yocto-check-layer-wrapper
@@ -30,7 +30,9 @@ cd $base_dir
 
 build_dir=$(mktemp -p $base_dir -d -t build-XXXX)
 
-source oe-init-build-env $build_dir
+this_dir=$(dirname $(readlink -f $0))
+
+source $this_dir/../oe-init-build-env $build_dir
 if [[ $output_log != '' ]]; then
 	yocto-check-layer -o "$output_log" "$*"
 else

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


More information about the Openembedded-commits mailing list