summaryrefslogtreecommitdiff
path: root/misc/cgo
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
commit429e86b5b7166734d6757e292b1548c39ff384bd (patch)
tree39fed3e2827dab53a5632cb0c69dc1e739c56076 /misc/cgo
parent92ba369b0adaa73e09b9b2764f821d234696df6b (diff)
downloadgolang-429e86b5b7166734d6757e292b1548c39ff384bd.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/cgo')
-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