diff options
author | Ian Lance Taylor <iant@golang.org> | 2010-03-17 10:08:27 -0700 |
---|---|---|
committer | Ian Lance Taylor <iant@golang.org> | 2010-03-17 10:08:27 -0700 |
commit | 4eafcd9544bc5b6ba01f9eebe70267cffafefa00 (patch) | |
tree | 474066e20bdce0358c6fa62f1ad82e54e2fcb19d | |
parent | 902ac19d348be6b800b8c0bf2bc3c3fb1c3931ee (diff) | |
download | golang-4eafcd9544bc5b6ba01f9eebe70267cffafefa00.tar.gz |
Fix build: don't assume that . is on PATH.
R=rsc
TBR=rsc
CC=golang-dev
http://codereview.appspot.com/610043
-rw-r--r-- | src/pkg/runtime/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/runtime/Makefile b/src/pkg/runtime/Makefile index f44de25d4..71ab072e0 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 |