summaryrefslogtreecommitdiffstats
path: root/scripts/oe-find-native-sysroot
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/oe-find-native-sysroot')
-rwxr-xr-xscripts/oe-find-native-sysroot15
1 files changed, 2 insertions, 13 deletions
diff --git a/scripts/oe-find-native-sysroot b/scripts/oe-find-native-sysroot
index 5146bbf999..6228efcbee 100755
--- a/scripts/oe-find-native-sysroot
+++ b/scripts/oe-find-native-sysroot
@@ -36,20 +36,9 @@ if [ "$1" = '--help' -o "$1" = '-h' -o $# -ne 1 ] ; then
36fi 36fi
37 37
38# Global vars 38# Global vars
39BITBAKE_E=""
40set_oe_native_sysroot(){ 39set_oe_native_sysroot(){
41 echo "Running bitbake -e $1" 40 echo "Getting sysroot..."
42 BITBAKE_E="`bitbake -e $1`" 41 OECORE_NATIVE_SYSROOT=$(bitbake-getvar -r $1 --value STAGING_DIR_NATIVE)
43 OECORE_NATIVE_SYSROOT=`echo "$BITBAKE_E" | grep ^STAGING_DIR_NATIVE= | cut -d '"' -f2`
44
45 if [ "x$OECORE_NATIVE_SYSROOT" = "x" ]; then
46 # This indicates that there was an error running bitbake -e that
47 # the user needs to be informed of
48 echo "There was an error running bitbake to determine STAGING_DIR_NATIVE"
49 echo "Here is the output from bitbake -e $1"
50 echo $BITBAKE_E
51 exit 1
52 fi
53} 42}
54 43
55if [ "x$OECORE_NATIVE_SYSROOT" = "x" ]; then 44if [ "x$OECORE_NATIVE_SYSROOT" = "x" ]; then