From b8d94b5b58d4a3572ae32accb269b71d3aeb934a Mon Sep 17 00:00:00 2001 From: Robert Yang Date: Tue, 12 Feb 2019 17:57:52 +0800 Subject: 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 --- 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 bbf6ee176d..b5df9ce989 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 -- cgit 1.2.3-korg