浏览代码

syntax/comment touchups

Mike Frysinger 19 年之前
父节点
当前提交
476ec17d2f
共有 1 个文件被更改,包括 14 次插入10 次删除
  1. 14 10
      package/sed/sedcheck.sh

+ 14 - 10
package/sed/sedcheck.sh

@@ -1,21 +1,25 @@
 #!/bin/sh
 #!/bin/sh
 
 
-if [ -x /usr/bin/sed ]; then 
-    SED="/usr/bin/sed";
+# Make sure the host sed supports '-i' (in-place).
+# If it doesn't, we'll build and use our own.
+
+if test -x /usr/bin/sed ; then
+	SED="/usr/bin/sed"
 else
 else
-    if [ -x /bin/sed ]; then 
-	SED="/bin/sed";
-    fi;
-fi;
+	if test -x /bin/sed ; then
+		SED="/bin/sed"
+	else
+		SED="sed"
+	fi
+fi
 
 
 echo "HELLO" > .sedtest
 echo "HELLO" > .sedtest
 $SED -i -e "s/HELLO/GOODBYE/" .sedtest >/dev/null 2>&1
 $SED -i -e "s/HELLO/GOODBYE/" .sedtest >/dev/null 2>&1
 
 
-if [ $? != 0 ] ; then
+if test $? != 0 ; then
 	echo build-sed-host-binary
 	echo build-sed-host-binary
 else
 else
 	echo use-sed-host-binary
 	echo use-sed-host-binary
-fi;
-rm -f .sedtest
-
+fi
 
 
+rm -f .sedtest