]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - MAKEALL
MAKEALL: fix awk warning message
[karo-tx-uboot.git] / MAKEALL
diff --git a/MAKEALL b/MAKEALL
index 956f3da2880d371e49a9c1a4b7e21116408689ad..b03522957d2e5f0505fc5924c5a318779d86d2c4 100755 (executable)
--- a/MAKEALL
+++ b/MAKEALL
@@ -38,8 +38,8 @@ usage()
          BUILD_NCPUS      number of parallel make jobs (default: auto)
          CROSS_COMPILE    cross-compiler toolchain prefix (default: "")
          CROSS_COMPILE_<ARCH> cross-compiler toolchain prefix for
-                          architecture "ARCH".  Substitute "ARCH" for any
-                          supported architecture (default: "")
+                          architecture "ARCH".  Substitute "ARCH" for any
+                          supported architecture (default: "")
          MAKEALL_LOGDIR   output all logs to here (default: ./LOG/)
          BUILD_DIR        output build directory (default: ./)
          BUILD_NBUILDS    number of parallel targets (default: 1)
@@ -518,7 +518,7 @@ get_target_location() {
        local vendor=""
 
        # Automatic mode
-       local line=`awk -F '\ +' '\$7 == "'"$target"'" { print \$0 }' boards.cfg`
+       local line=`awk '\$7 == "'"$target"'" { print \$0 }' boards.cfg`
        if [ -z "${line}" ] ; then echo "" ; return ; fi
 
        set ${line}
@@ -556,7 +556,7 @@ get_target_location() {
 get_target_maintainers() {
        local name=`echo $1 | cut -d : -f 3`
 
-       local line=`awk -F '\ +' '\$7 == "'"$target"'" { print \$0 }' boards.cfg`
+       local line=`awk '\$7 == "'"$target"'" { print \$0 }' boards.cfg`
        if [ -z "${line}" ]; then
                echo ""
                return ;