Commit bd373494 authored by Dmitriy Vyukov's avatar Dmitriy Vyukov

cmd/dist: fix copying of cmd/prof

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/5642059
parent 136f12f5
......@@ -694,7 +694,7 @@ install(char *dir)
// For cmd/prof, copy pprof into the tool directory.
if(streq(dir, "cmd/prof")) {
copy(bpathf(&b, "%s/bin/tool/pprof", goroot),
bpathf(&b, "%s/src/cmd/prof/pprof", goroot));
bpathf(&b1, "%s/src/cmd/prof/pprof", goroot));
}
// Generate any missing files; regenerate existing ones.
......
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