diff options
author | Russ Cox <rsc@golang.org> | 2009-11-17 08:39:26 -0800 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2009-11-17 08:39:26 -0800 |
commit | 2c1444b4db9440d14c0f86cc2e84fd9531148514 (patch) | |
tree | b5aebadbc8f19d0bc270f589d59183752086ff99 | |
parent | 702e74b4724479e305cdf139e880deec91bbadc8 (diff) | |
download | golang-2c1444b4db9440d14c0f86cc2e84fd9531148514.tar.gz |
Make.pkg: have "make coverage" invoke 6cov with correct binary
Fixes issue 239.
R=r
http://codereview.appspot.com/154176
-rw-r--r-- | src/Make.pkg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Make.pkg b/src/Make.pkg index 137779207..f7b850685 100644 --- a/src/Make.pkg +++ b/src/Make.pkg @@ -26,7 +26,7 @@ PREREQ+=$(patsubst %,%.make,$(DEPS)) coverage: gotest - 6cov -g $(shell pwd) | grep -v '_test\.go:' + 6cov -g $(shell pwd) $O.out | grep -v '_test\.go:' clean: rm -rf *.[$(OS)o] *.a [$(OS)].out *.cgo[12].go *.cgo[34].c *.so _obj _test _testmain.go $(CLEANFILES) |