Commit 86c7bc6e authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

misc/dist: don't ship cmd/cov or cmd/prof

Fixes #3317

R=golang-dev, dsymonds
CC=golang-dev
https://golang.org/cl/5784083
parent c898c519
...@@ -43,6 +43,8 @@ const ( ...@@ -43,6 +43,8 @@ const (
) )
var preBuildCleanFiles = []string{ var preBuildCleanFiles = []string{
"src/cmd/cov",
"src/cmd/prof",
"src/pkg/exp", "src/pkg/exp",
"src/pkg/old", "src/pkg/old",
} }
......
...@@ -1214,6 +1214,8 @@ clean(void) ...@@ -1214,6 +1214,8 @@ clean(void)
vinit(&dir); vinit(&dir);
for(i=0; i<nelem(cleantab); i++) { for(i=0; i<nelem(cleantab); i++) {
if((streq(cleantab[i], "cmd/cov") || streq(cleantab[i], "cmd/prof")) && !isdir(cleantab[i]))
continue;
bpathf(&path, "%s/src/%s", goroot, cleantab[i]); bpathf(&path, "%s/src/%s", goroot, cleantab[i]);
xreaddir(&dir, bstr(&path)); xreaddir(&dir, bstr(&path));
// Remove generated files. // Remove generated files.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment