]> code.ossystems Code Review - openembedded-core.git/commitdiff
runqemu-extract-sdk: fix whitespace errors
authorDennis Menschel <menschel-d@posteo.de>
Wed, 13 Jun 2018 18:28:16 +0000 (20:28 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 18 Jun 2018 09:59:33 +0000 (10:59 +0100)
Indentation using a mix of whitespaces and tabs has been unified in
favor of tabs.

Signed-off-by: Dennis Menschel <menschel-d@posteo.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/runqemu-extract-sdk

index 13e02fa2ca3011cae53ed443e798d6cf6df7b143..4da3eb10a795d7c42b017e5f9339eaf5f7c034f3 100755 (executable)
@@ -31,9 +31,9 @@ fi
 
 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 system environment setup script?"
-    exit 1
+       echo "Error: Unable to find the oe-find-native-sysroot script"
+       echo "Did you forget to source your build system environment setup script?"
+       exit 1
 fi
 . $SYSROOT_SETUP_SCRIPT meta-ide-support
 PSEUDO_OPTS="-P $OECORE_NATIVE_SYSROOT/usr"
@@ -42,9 +42,9 @@ ROOTFS_TARBALL=$1
 SDK_ROOTFS_DIR=$2
 
 if [ ! -e "$ROOTFS_TARBALL" ]; then
-       echo "Error: sdk tarball '$ROOTFS_TARBALL' does not exist"
-       usage
-       exit 1
+       echo "Error: sdk tarball '$ROOTFS_TARBALL' does not exist"
+       usage
+       exit 1
 fi
 
 # Convert SDK_ROOTFS_DIR to a full pathname
@@ -84,7 +84,7 @@ debug_image="`echo $ROOTFS_TARBALL | grep '\-dbg\.tar\.'`"
 if [ -e "$pseudo_state_dir" -a -z "$debug_image" ]; then
        echo "Error: $pseudo_state_dir already exists!"
        echo "Please delete the rootfs tree and pseudo directory manually"
-        echo "if this is really what you want."
+       echo "if this is really what you want."
        exit 1
 fi