From: Ian Lance Taylor Date: Wed, 17 Mar 2010 17:08:27 +0000 (-0700) Subject: Fix build: don't assume that . is on PATH. X-Git-Tag: weekly.2010-03-22~30 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=332ff67ee2c35e809b6abe7b9b376261bddbfcbd;p=gostls13.git Fix build: don't assume that . is on PATH. R=rsc TBR=rsc CC=golang-dev https://golang.org/cl/610043 --- 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