Closed GoogleCodeExporter closed 9 years ago
The issue is line 81 and friends in gobin.go
p.compiler, err = exec.LookPath(path.Join(gobin,p.compiler))
should be
p.compiler, err = exec.LookPath(p.compiler)
exec.LookPath should be given the command as you might type it on the command
line. Giving it an absolute path defeats the purpose.
Original comment by jasm...@gmail.com
on 25 Feb 2011 at 5:48
Can try use gopromake -goroot /Users/jasmuth/go -gopro astview.pro
Original comment by Visua...@gmail.com
on 25 Feb 2011 at 11:59
Original issue reported on code.google.com by
jasm...@gmail.com
on 25 Feb 2011 at 4:18