summaryrefslogtreecommitdiff
path: root/src/cmd
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2014-11-09 20:20:26 -0500
committerRuss Cox <rsc@golang.org>2014-11-09 20:20:26 -0500
commit3e7d4c2064a727c0a1e79430b46fb63846cd2537 (patch)
treee52cc01ee2ca40eecd74438941e935da9fec3ce7 /src/cmd
parent752635315e7df0708e13e6aa8c940d165324c834 (diff)
downloadgo-3e7d4c2064a727c0a1e79430b46fb63846cd2537.tar.gz
cmd/dist: remove old misc/pprof
LGTM=dave, bradfitz, r, alex.brainman R=r, dave, bradfitz, alex.brainman CC=golang-codereviews https://codereview.appspot.com/167350043
Diffstat (limited to 'src/cmd')
-rw-r--r--src/cmd/dist/build.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/cmd/dist/build.c b/src/cmd/dist/build.c
index 31c4da381..d638ae4eb 100644
--- a/src/cmd/dist/build.c
+++ b/src/cmd/dist/build.c
@@ -670,13 +670,6 @@ install(char *dir)
bpathf(&final_path, "%s/src/%s", goroot_final, dir);
name = lastelem(dir);
- // For misc/prof, copy into the tool directory and we're done.
- if(hasprefix(dir, "misc/")) {
- copyfile(bpathf(&b, "%s/%s", tooldir, name),
- bpathf(&b1, "%s/misc/%s", goroot, name), 1);
- goto out;
- }
-
// set up gcc command line on first run.
if(gccargs.len == 0) {
bprintf(&b, "%s %s", defaultcc, defaultcflags);
@@ -1293,8 +1286,6 @@ static char *buildorder[] = {
"libbio",
"liblink",
- "misc/pprof",
-
"cmd/cc", // must be before c
"cmd/gc", // must be before g
"cmd/%sl", // must be before a, c, g