From c967ba02102a654b781701216980be31b04044fa Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Sun, 19 Jun 2011 09:36:45 +1000 Subject: [PATCH] goinstall: always rebuild a package after its dependencies are built R=golang-dev, r CC=golang-dev https://golang.org/cl/4627047 --- src/cmd/goinstall/main.go | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/cmd/goinstall/main.go b/src/cmd/goinstall/main.go index 63b4503039..87135fd0cf 100644 --- a/src/cmd/goinstall/main.go +++ b/src/cmd/goinstall/main.go @@ -150,7 +150,7 @@ func logPackage(pkg string) { } // install installs the package named by path, which is needed by parent. -func install(pkg, parent string) { +func install(pkg, parent string) (built bool) { // Make sure we're not already trying to install pkg. switch visit[pkg] { case done: @@ -201,9 +201,12 @@ func install(pkg, parent string) { errorf("%s: package has no files\n", pkg) return } + var depBuilt bool for _, p := range dirInfo.Imports { if p != "C" { - install(p, pkg) + if install(p, pkg) { + depBuilt = true + } } } if errors { @@ -224,20 +227,22 @@ func install(pkg, parent string) { script.Clean() } if *doInstall { - if script.Stale() { + if depBuilt || script.Stale() { vlogf("%s: install\n", pkg) if err := script.Run(); err != nil { errorf("%s: install: %v\n", pkg, err) return } + built = true } else { - vlogf("%s: install: up-to-date\n", pkg) + vlogf("%s: up-to-date\n", pkg) } } if remote { // mark package as installed in $GOROOT/goinstall.log logPackage(pkg) } + return }