summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorDevon H. O'Dell <devon.odell@gmail.com>2009-11-17 08:20:58 -0800
committerDevon H. O'Dell <devon.odell@gmail.com>2009-11-17 08:20:58 -0800
commitab2bee6329d08b6aaf230a99a22e5a40768da9d5 (patch)
tree39fed3e2827dab53a5632cb0c69dc1e739c56076 /misc
parentbd46252669ee94c82e9798a5811ce2d1de722a41 (diff)
downloadgo-ab2bee6329d08b6aaf230a99a22e5a40768da9d5.tar.gz
FreeBSD-specific porting work.
cgo/libmach remain unimplemented. However, compilers, runtime, and packages are 100%. I still need to go through and implement missing syscalls (at least make sure they're all listed), but for all shipped functionality, this is done. Ship! ;) R=rsc, VenkateshSrinivas http://codereview.appspot.com/152142 Committer: Russ Cox <rsc@golang.org>
Diffstat (limited to 'misc')
-rwxr-xr-xmisc/cgo/stdio/test.bash4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/cgo/stdio/test.bash b/misc/cgo/stdio/test.bash
index 8849fa478..82e3f7b45 100755
--- a/misc/cgo/stdio/test.bash
+++ b/misc/cgo/stdio/test.bash
@@ -4,7 +4,7 @@
# license that can be found in the LICENSE file.
set -e
-make hello fib chain
+gomake hello fib chain
echo '*' hello >run.out
./hello >>run.out
echo '*' fib >>run.out
@@ -12,4 +12,4 @@ echo '*' fib >>run.out
echo '*' chain >>run.out
./chain >>run.out
diff run.out golden.out
-make clean
+gomake clean