[pisa-src] r2206 - trunk/openwrt/build-openwrt.sh

  • From: René Hummen <rene.hummen@xxxxxxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Fri, 26 Mar 2010 10:40:19 +0100

Author: hummen
Date: Fri Mar 26 10:40:18 2010
New Revision: 2206

Log:
replace -e and \t by 4 spaces and added quotes

Modified:
   trunk/openwrt/build-openwrt.sh

Modified: trunk/openwrt/build-openwrt.sh
==============================================================================
--- trunk/openwrt/build-openwrt.sh      Thu Mar 25 22:50:48 2010        (r2205)
+++ trunk/openwrt/build-openwrt.sh      Fri Mar 26 10:40:18 2010        (r2206)
@@ -7,7 +7,7 @@
 # 4. modify paths below according to the checkouts
 # 5. run this script
 
-DEBUG=yes
+DEBUG="yes"
 BASE_PATH="/path/to"
 OPENWRT="$BASE_PATH/openwrt"
 PISA="$BASE_PATH/pisa"
@@ -32,15 +32,15 @@
         make autotools-clean
     fi
 
-    echo_to_stderr "\tUpdating HIPL..."
+    echo_to_stderr "    Updating HIPL..."
     bzr up
-    echo_to_stderr "Done."
+    echo_to_stderr "    Done."
 
-    echo_to_stderr "\tMaking HIPL tarball..."
+    echo_to_stderr "    Making HIPL tarball..."
     ./autogen.sh
     ./configure
     make dist
-    echo_to_stderr "Done."
+    echo_to_stderr "    Done."
 else
     echo_to_stderr "ERROR: $HIP does not exist."
     exit 1
@@ -55,20 +55,20 @@
         make autotools-clean
     fi
 
-    echo_to_stderr "\tUpdating PISA..."
+    echo_to_stderr "    Updating PISA..."
     svn up
-    echo_to_stderr "Done."
+    echo_to_stderr "    Done."
 
-    echo_to_stderr "\tConfiguring PISA..."
+    echo_to_stderr "    Configuring PISA..."
     autoreconf --install
     ./configure
     make dist
-    echo_to_stderr "Done."
+    echo_to_stderr "    Done."
 
-    echo_to_stderr "\tCopying HIPL and PISA to OpenWRT"
+    echo_to_stderr "    Copying HIPL and PISA to OpenWRT"
     cd $PISA/openwrt
     $PISA/openwrt/configure_router.sh auto-linksys  $OPENWRT $PISA $HIP linksys
-    echo_to_stderr "Done."
+    echo_to_stderr "    Done."
 else
     echo_to_stderr "ERROR: $PISA does not exist."
     exit 1
@@ -78,14 +78,14 @@
     echo_to_stderr "-> Building OpenWRT"
     cd $OPENWRT
 
-    echo_to_stderr "\tCleaning up previous builds..."
+    echo_to_stderr "    Cleaning up previous builds..."
     make package/hipl-clean
     make package/pisa-clean
-    echo_to_stderr "Done."
+    echo_to_stderr "    Done."
 
-    echo_to_stderr "\tCompiling OpenWRT image..."
+    echo_to_stderr "    Compiling OpenWRT image..."
     make
-    echo_to_stderr "Done."
+    echo_to_stderr "    Done."
 else
     echo_to_stderr "ERROR: $PISA does not exist."
     exit 1

Other related posts:

  • » [pisa-src] r2206 - trunk/openwrt/build-openwrt.sh - René Hummen