summaryrefslogtreecommitdiff
path: root/src/cmd/goinstall/parse.go
AgeCommit message (Collapse)AuthorFilesLines
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý1-5/+64
2011-04-20Imported Upstream version 2011.03.07.1upstream/2011.03.07.1Ondřej Surý1-6/+6
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-23/+54
2010-06-21goinstall: process dependencies for package mainRoger Peppe1-13/+20
Currently to install a command, you have to manually goinstall each of the remote packages that it depends on. This patch lets goinstall P work where P is contains files in package main. It does not actually build the package, but it installs all of its dependencies and prints a message to that effect. R=rsc CC=golang-dev http://codereview.appspot.com/1301043 Committer: Russ Cox <rsc@golang.org>
2010-03-04goinstall: an experiment in (external) package installationRuss Cox1-0/+72
R=adg, r CC=cw, golang-dev http://codereview.appspot.com/224043