Commit 69dd762a by Ian Lance Taylor

gotest: Avoid echo -n.

From-SVN: r172000
parent c1e2610e
...@@ -231,7 +231,7 @@ mkdir _test ...@@ -231,7 +231,7 @@ mkdir _test
case "x$gofiles" in case "x$gofiles" in
x) x)
gofiles=$(echo -n $(ls *_test.go 2>/dev/null)) gofiles=`ls *_test.go 2>/dev/null`
esac esac
case "x$gofiles" in case "x$gofiles" in
...@@ -250,7 +250,7 @@ GC="$holdGC" ...@@ -250,7 +250,7 @@ GC="$holdGC"
case "x$pkgfiles" in case "x$pkgfiles" in
x) x)
pkgbasefiles=$(echo -n $(ls *.go | grep -v _test.go 2>/dev/null)) pkgbasefiles=`ls *.go | grep -v _test.go 2>/dev/null`
;; ;;
*) *)
for f in $pkgfiles; do for f in $pkgfiles; do
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment