diff options
author | Dennis Menschel <menschel-d@posteo.de> | 2018-06-13 20:28:16 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-06-18 11:07:57 +0100 |
commit | 81c537475128718ae9fb9113e9766fde78181075 (patch) | |
tree | fac90886dec780667efe34df4380b84cfd5cbae0 /scripts | |
parent | 959aae0c2b4c7b7f0342c825890fdd64b3f08d66 (diff) | |
download | poky-81c537475128718ae9fb9113e9766fde78181075.tar.gz |
runqemu-extract-sdk: fix whitespace errors
Indentation using a mix of whitespaces and tabs has been unified in
favor of tabs.
(From OE-Core rev: 3827f1aa4a2bb433e445802c48e32f72932950e6)
Signed-off-by: Dennis Menschel <menschel-d@posteo.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/runqemu-extract-sdk | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/scripts/runqemu-extract-sdk b/scripts/runqemu-extract-sdk index 13e02fa2ca..4da3eb10a7 100755 --- a/scripts/runqemu-extract-sdk +++ b/scripts/runqemu-extract-sdk | |||
@@ -31,9 +31,9 @@ fi | |||
31 | 31 | ||
32 | SYSROOT_SETUP_SCRIPT=`which oe-find-native-sysroot 2> /dev/null` | 32 | SYSROOT_SETUP_SCRIPT=`which oe-find-native-sysroot 2> /dev/null` |
33 | if [ -z "$SYSROOT_SETUP_SCRIPT" ]; then | 33 | if [ -z "$SYSROOT_SETUP_SCRIPT" ]; then |
34 | echo "Error: Unable to find the oe-find-native-sysroot script" | 34 | echo "Error: Unable to find the oe-find-native-sysroot script" |
35 | echo "Did you forget to source your build system environment setup script?" | 35 | echo "Did you forget to source your build system environment setup script?" |
36 | exit 1 | 36 | exit 1 |
37 | fi | 37 | fi |
38 | . $SYSROOT_SETUP_SCRIPT meta-ide-support | 38 | . $SYSROOT_SETUP_SCRIPT meta-ide-support |
39 | PSEUDO_OPTS="-P $OECORE_NATIVE_SYSROOT/usr" | 39 | PSEUDO_OPTS="-P $OECORE_NATIVE_SYSROOT/usr" |
@@ -42,9 +42,9 @@ ROOTFS_TARBALL=$1 | |||
42 | SDK_ROOTFS_DIR=$2 | 42 | SDK_ROOTFS_DIR=$2 |
43 | 43 | ||
44 | if [ ! -e "$ROOTFS_TARBALL" ]; then | 44 | if [ ! -e "$ROOTFS_TARBALL" ]; then |
45 | echo "Error: sdk tarball '$ROOTFS_TARBALL' does not exist" | 45 | echo "Error: sdk tarball '$ROOTFS_TARBALL' does not exist" |
46 | usage | 46 | usage |
47 | exit 1 | 47 | exit 1 |
48 | fi | 48 | fi |
49 | 49 | ||
50 | # Convert SDK_ROOTFS_DIR to a full pathname | 50 | # Convert SDK_ROOTFS_DIR to a full pathname |
@@ -84,7 +84,7 @@ debug_image="`echo $ROOTFS_TARBALL | grep '\-dbg\.tar\.'`" | |||
84 | if [ -e "$pseudo_state_dir" -a -z "$debug_image" ]; then | 84 | if [ -e "$pseudo_state_dir" -a -z "$debug_image" ]; then |
85 | echo "Error: $pseudo_state_dir already exists!" | 85 | echo "Error: $pseudo_state_dir already exists!" |
86 | echo "Please delete the rootfs tree and pseudo directory manually" | 86 | echo "Please delete the rootfs tree and pseudo directory manually" |
87 | echo "if this is really what you want." | 87 | echo "if this is really what you want." |
88 | exit 1 | 88 | exit 1 |
89 | fi | 89 | fi |
90 | 90 | ||