summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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"