aboutsummaryrefslogtreecommitdiff
path: root/exec.go
diff options
context:
space:
mode:
authorShinichiro Hamaji <shinichiro.hamaji@gmail.com>2015-04-21 17:55:50 +0900
committerShinichiro Hamaji <shinichiro.hamaji@gmail.com>2015-04-21 17:56:53 +0900
commitdad8053e0662a9e0c357f17237a8fd00cee8003e (patch)
treec38c5c1d21227599170aa838f932da6270c4854b /exec.go
parent37626b6a9f1326cd7712b8c902416e36ac5c2ba9 (diff)
downloadkati-dad8053e0662a9e0c357f17237a8fd00cee8003e.tar.gz
Do not use filepath.Clean to normalize inputs/outputs
Only leading './'s should be stripped.
Diffstat (limited to 'exec.go')
-rw-r--r--exec.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/exec.go b/exec.go
index 3c0afba..02dc239 100644
--- a/exec.go
+++ b/exec.go
@@ -224,7 +224,7 @@ func exitStatus(err error) int {
func (ex *Executor) build(n *DepNode, neededBy string) (int64, error) {
output := n.Output
- Log("Building: %s", output)
+ Log("Building: %s for %s", output, neededBy)
ex.buildCnt++
if ex.buildCnt%100 == 0 {
ex.reportStats()