Commit e762778f authored by ian's avatar ian
Browse files

gotest: Avoid echo -n.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@172000 138bc75d-0d04-0410-961f-82ee72b054a4
parent 748fd717
......@@ -231,7 +231,7 @@ mkdir _test
case "x$gofiles" in
x)
gofiles=$(echo -n $(ls *_test.go 2>/dev/null))
gofiles=`ls *_test.go 2>/dev/null`
esac
case "x$gofiles" in
......@@ -250,7 +250,7 @@ GC="$holdGC"
case "x$pkgfiles" in
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
......
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