summaryrefslogtreecommitdiff
path: root/src/sudo.bash
Commit message (Collapse)AuthorAgeFilesLines
* cmd/cov: deleteRob Pike2013-05-241-2/+2
| | | | | | | | | | | | It doesn't work, it's not portable, it's not part of the released binaries, and a better tool is due. Fixes issue 1319. Fixes issue 4621. R=golang-dev, bradfitz, dave, rsc CC=golang-dev https://codereview.appspot.com/9681044
* sudo.bash: diagnose when the go tool is not in $PATHRob Pike2012-11-151-0/+6
| | | | | | | | Fixes issue 4386. R=golang-dev, iant CC=golang-dev http://codereview.appspot.com/6854050
* cmd/dist, sudo.bash: don't mention sudo.bash if cov or prof is not presentShenghou Ma2012-04-021-1/+6
| | | | | | | | Fixes issue 3422. R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/5967057
* cmd/dist, cmd/go: move CGO_ENABLED from 'go tool dist env' to 'go env'Shenghou Ma2012-03-101-1/+1
| | | | | | | | | | So that we don't duplicate knowledge about which OS/ARCH combination supports cgo. Also updated src/run.bash and src/sudo.bash to use 'go env'. R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/5792055
* build: fix sudo.bash.David Symonds2012-02-151-1/+2
| | | | | | R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/5647063
* build: fix sudo.bash.David Symonds2012-02-051-2/+2
| | | | | | R=rsc, balasanjay, rsc CC=golang-dev http://codereview.appspot.com/5630051
* build: use cmd/distRuss Cox2012-02-041-1/+1
| | | | | | R=bradfitz, ality, r, r, iant, mikioh.mikioh CC=golang-dev http://codereview.appspot.com/5615058
* cmd/go: c tools not used during compilationRob Pike2012-01-291-3/+6
| | | | | | | | cov, nm, pprof, prof R=rsc, r, rsc CC=golang-dev http://codereview.appspot.com/5576067
* sudo.bash: print error/exit if problem with /usr/local/binMike Rosset2011-09-011-0/+5
| | | | | | | | | | | | | When installing profiling tools on Mac OS X print message if there is a problem with /usr/local/bin Fixes issue 2209. R=golang-dev, r, adg CC=golang-dev, mike.rosset http://codereview.appspot.com/4950057 Committer: Rob Pike <r@golang.org>
* build: no required environment variablesRuss Cox2010-08-181-0/+3
| | | | | | R=adg, r, PeterGo CC=golang-dev http://codereview.appspot.com/1942044
* go: makes it build for the case $GOROOT has whitespacesSergio Luis O. B. Correia2009-11-231-1/+1
| | | | | | | | | | | | | | | | | the bash scripts and makefiles for building go didn't take into account the fact $GOROOT / $GOBIN could both be directories containing whitespaces, and was not possible to build it in such a situation. this commit adjusts the various makefiles/scripts to make it aware of that possibility, and now it builds successfully when using a path with whitespaces as well. Fixes issue 115. R=rsc, dsymonds1 http://codereview.appspot.com/157067 Committer: Russ Cox <rsc@golang.org>
* Build changes to support work on the BSDs.Devon H. O'Dell2009-11-141-1/+1
| | | | | | | | | | This does still contain some FreeBSD-specific bits, but it's a pain to do partial diffs. R=rsc http://codereview.appspot.com/152138 Committer: Russ Cox <rsc@golang.org>
* sudo.bash tries to install acid and db, which don't exist any moreRob Pike2009-11-121-1/+1
| | | | | | R=rsc CC=golang-dev http://codereview.appspot.com/152117
* add build step to install debuggers setgid procmod.Russ Cox2008-11-181-0/+18
they have to go in /usr/local/bin because the setgid bit is ignored in /Users. R=r DELTA=54 (49 added, 0 deleted, 5 changed) OCL=19424 CL=19463