[oe-commits] Robert Yang : Cleanup the whitespace in functions

git version control git at git.openembedded.org
Wed May 18 13:28:36 UTC 2011


Module: openembedded-core.git
Branch: master
Commit: 60df57a54ebfe8fa1c1574bcd7900c58810aa2d2
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=60df57a54ebfe8fa1c1574bcd7900c58810aa2d2

Author: Robert Yang <liezhi.yang at windriver.com>
Date:   Tue May 17 09:29:25 2011 +0800

Cleanup the whitespace in functions

Cleanup the whitespace in functions, replace the 4 whitespaces
indent with tab.

Signed-off-by: Robert Yang <liezhi.yang at windriver.com>

---

 .../initscripts/initscripts-1.0/functions          |   11 ++++++-----
 1 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/meta/recipes-core/initscripts/initscripts-1.0/functions b/meta/recipes-core/initscripts/initscripts-1.0/functions
index 689fd32..ac99e11 100644
--- a/meta/recipes-core/initscripts/initscripts-1.0/functions
+++ b/meta/recipes-core/initscripts/initscripts-1.0/functions
@@ -4,11 +4,12 @@
 #               shell scripts in the /etc/init.d directory.
 #
 
-machine_id() {		# return the machine ID
-    awk 'BEGIN { FS=": " } /Hardware/ { gsub(" ", "_", $2); print tolower($2) } ' </proc/cpuinfo
+machine_id() { # return the machine ID
+	awk 'BEGIN { FS=": " } /Hardware/ \
+		{ gsub(" ", "_", $2); print tolower($2) } ' </proc/cpuinfo
 }
 
-killproc() {		# kill the named process(es)
-    pid=`/bin/pidof $1`
-    [ "$pid" != "" ] && kill $pid
+killproc() { # kill the named process(es)
+	pid=`/bin/pidof $1`
+	[ "$pid" != "" ] && kill $pid
 }





More information about the Openembedded-commits mailing list