summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Backman <kaib@golang.org>2009-08-19 19:19:57 -0700
committerKai Backman <kaib@golang.org>2009-08-19 19:19:57 -0700
commitbbc294fc523dbc2ee9f6b818cf5c2d85f5016c79 (patch)
tree95734985d603c3d1d84fe278cc2dd8779c2b7714
parent732aad2d622617770f7486ad0120b973218c0718 (diff)
downloadgolang-bbc294fc523dbc2ee9f6b818cf5c2d85f5016c79.tar.gz
change from using /tmp to local directory
R=rsc APPROVED=rsc DELTA=3 (0 added, 0 deleted, 3 changed) OCL=33534 CL=33567
-rwxr-xr-xsrc/all-arm.bash6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/all-arm.bash b/src/all-arm.bash
index de062a48e..fc194dcb8 100755
--- a/src/all-arm.bash
+++ b/src/all-arm.bash
@@ -8,6 +8,6 @@ bash make-arm.bash
# TODO(kaib): add in proper tests
#bash run.bash
-5g -o /tmp/hello.5 /home/kaib/work/go/hello.go
-5l -o /tmp/5.out /tmp/hello.5
-qemu-arm -cpu cortex-a8 /tmp/5.out|grep -q "Hello World"
+5g -o hello.5 /home/kaib/work/go/hello.go
+5l -o 5.out hello.5
+qemu-arm -cpu cortex-a8 5.out|grep -q "Hello World"