From 59d2acd2d4a3434f49daaa478f2fab1e29f362db Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Sun, 6 Mar 2011 17:04:24 -0500 Subject: [PATCH] build: remove old cgo files Cgo changed to write these files into _obj, but some trees may still have the old ones in the source directory. They need to be removed during make clean so that a subsequent build will use the ones in _obj. R=r, r2 CC=golang-dev https://golang.org/cl/4254056 --- src/Make.pkg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Make.pkg b/src/Make.pkg index d912b69043..3d616ca999 100644 --- a/src/Make.pkg +++ b/src/Make.pkg @@ -47,7 +47,7 @@ coverage: gotest 6cov -g $(shell pwd) $O.out | grep -v '_test\.go:' -CLEANFILES+=*.so _obj _test _testmain.go *.exe _cgo* +CLEANFILES+=*.so _obj _test _testmain.go *.exe _cgo* *.cgo[12].* test: gotest -- 2.50.0