diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-09-01 22:04:48 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-09-02 14:20:32 +0100 |
commit | 6b5706d1f9ce7a3fd4d8f819ff8f3fd789665647 (patch) | |
tree | 436599b7eda0bd343518cfcc81e72976dc16444e /scripts/runqemu-export-rootfs | |
parent | 06625096f897235ed85f0d9a1355497f92938454 (diff) | |
download | openembedded-core-6b5706d1f9ce7a3fd4d8f819ff8f3fd789665647.tar.gz openembedded-core-6b5706d1f9ce7a3fd4d8f819ff8f3fd789665647.tar.bz2 openembedded-core-6b5706d1f9ce7a3fd4d8f819ff8f3fd789665647.zip |
scripts: Show sensible warning messages if expected binaries don't exist
[YOCTO #1438]
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/runqemu-export-rootfs')
-rwxr-xr-x | scripts/runqemu-export-rootfs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/runqemu-export-rootfs b/scripts/runqemu-export-rootfs index 6f4604d9a6..3ee311235d 100755 --- a/scripts/runqemu-export-rootfs +++ b/scripts/runqemu-export-rootfs @@ -38,7 +38,7 @@ fi # Ensure the nfs-export-dir is an absolute path NFS_EXPORT_DIR=$(cd "$2" && pwd) -SYSROOT_SETUP_SCRIPT=`which oe-find-native-sysroot` +SYSROOT_SETUP_SCRIPT=`which oe-find-native-sysroot 2> /dev/null` if [ -z "$SYSROOT_SETUP_SCRIPT" ]; then echo "Error: Unable to find the oe-find-native-sysroot script" echo "Did you forget to source your build environment setup script?" |