]> Cypherpunks repositories - gostls13.git/commit
goinstall: process dependencies for package main
authorRoger Peppe <rogpeppe@gmail.com>
Mon, 21 Jun 2010 18:01:20 +0000 (11:01 -0700)
committerRuss Cox <rsc@golang.org>
Mon, 21 Jun 2010 18:01:20 +0000 (11:01 -0700)
commit3ce29380d57a77496daec145b2a5510663d23901
treefc9f501ebb363e3994b7fbf0a4d6bee83ede5ec4
parent5cb4f82bbcd2e79ab8fd20c99c65f9928f94c2dd
goinstall: process dependencies for package main

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
https://golang.org/cl/1301043
src/cmd/goinstall/main.go
src/cmd/goinstall/make.go
src/cmd/goinstall/parse.go