aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2010-03-17 10:08:27 -0700
committerIan Lance Taylor <iant@golang.org>2010-03-17 10:08:27 -0700
commit332ff67ee2c35e809b6abe7b9b376261bddbfcbd (patch)
tree4fd573cd866f340fcfec6c199d1b81a7b7e46d49
parent908efdb5ac555906b0d9803fa610feae753ebcd5 (diff)
downloadgo-332ff67ee2c35e809b6abe7b9b376261bddbfcbd.tar.gz
go-332ff67ee2c35e809b6abe7b9b376261bddbfcbd.zip
Fix build: don't assume that . is on PATH.
R=rsc TBR=rsc CC=golang-dev https://golang.org/cl/610043
-rw-r--r--src/pkg/runtime/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/runtime/Makefile b/src/pkg/runtime/Makefile
index f44de25d41..71ab072e01 100644
--- a/src/pkg/runtime/Makefile
+++ b/src/pkg/runtime/Makefile
@@ -125,7 +125,7 @@ mkversion: mkversion.c
$(QUOTED_GOBIN)/quietgcc -o $@ -I "$(GOROOT)/include" $< "$(GOROOT)/lib/lib9.a"
version.go: mkversion
- mkversion >version.go
+ ./mkversion >version.go
%.c: %.cgo cgo2c
./cgo2c $< > $@.tmp