aboutsummaryrefslogtreecommitdiff
path: root/depgraph.go
diff options
context:
space:
mode:
authorFumitoshi Ukai <fumitoshi.ukai@gmail.com>2015-06-25 15:39:35 +0900
committerFumitoshi Ukai <fumitoshi.ukai@gmail.com>2015-06-25 15:41:34 +0900
commit3ec25b5014de413895bf81766229048566611686 (patch)
tree62b71a5beda8e5c2081798202dab0ee444962566 /depgraph.go
parent0af44522122be4f266d382fffb23c03b271a4a74 (diff)
downloadkati-3ec25b5014de413895bf81766229048566611686.tar.gz
unexport NinjaGenerator, DefaultMakefile
change HandleQuery -> Query
Diffstat (limited to 'depgraph.go')
-rw-r--r--depgraph.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/depgraph.go b/depgraph.go
index d124040..787faee 100644
--- a/depgraph.go
+++ b/depgraph.go
@@ -43,7 +43,7 @@ type LoadOpt struct {
func Load(makefile string, opt LoadOpt) (*DepGraph, error) {
startTime := time.Now()
if makefile == "" {
- makefile = DefaultMakefile()
+ makefile = defaultMakefile()
}
if opt.UseCache {