package/gdb: cleanup in gdb-python-config
authorYann E. MORIN <yann.morin.1998@free.fr>
Thu, 31 Dec 2020 09:53:10 +0000 (10:53 +0100)
committerThomas Petazzoni <thomas.petazzoni@bootlin.com>
Thu, 31 Dec 2020 13:44:01 +0000 (14:44 +0100)
There was a mix of leading spaces and TABs. Szitch to using only spaces.

Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
package/gdb/gdb-python-config

index 0f002281d7b0ee7dc48fb16a6694af01a2f0dca7..222f1cf6baef52bbd42e6698e7252ecdb7620241 100755 (executable)
@@ -21,16 +21,16 @@ fi
 
 case "$2" in
     --includes)
-       echo "-I${STAGING_DIR}/usr/include/python2.7"
-       ;;
+        echo "-I${STAGING_DIR}/usr/include/python2.7"
+        ;;
     --ldflags)
-       echo "-lpthread -ldl -lutil -lm -lpython2.7"
-       ;;
+        echo "-lpthread -ldl -lutil -lm -lpython2.7"
+        ;;
     --exec-prefix)
-       echo "/usr"
-       ;;
+        echo "/usr"
+        ;;
     *)
-       echo "Bad arg $2." >&2
-       exit 1
-       ;;
+        echo "Bad arg $2." >&2
+        exit 1
+        ;;
 esac