aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap.go
diff options
context:
space:
mode:
authorFumitoshi Ukai <fumitoshi.ukai@gmail.com>2015-06-25 16:27:10 +0900
committerFumitoshi Ukai <fumitoshi.ukai@gmail.com>2015-06-25 16:27:10 +0900
commit08eda65a3991784729bd77d0d463ec108fda414c (patch)
tree0e0f9c071ff4e53145d3f113b8385a1c2aa494d1 /bootstrap.go
parentadc14447b43c159816e8c4efc0e5e6001373b0c1 (diff)
downloadandroid_build_kati-08eda65a3991784729bd77d0d463ec108fda414c.tar.gz
android_build_kati-08eda65a3991784729bd77d0d463ec108fda414c.tar.bz2
android_build_kati-08eda65a3991784729bd77d0d463ec108fda414c.zip
unexport Makefile, Parser and EvalResult
Diffstat (limited to 'bootstrap.go')
-rw-r--r--bootstrap.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap.go b/bootstrap.go
index de13b2b..30ca77d 100644
--- a/bootstrap.go
+++ b/bootstrap.go
@@ -22,7 +22,7 @@ import (
const bootstrapMakefileName = "*bootstrap*"
-func BootstrapMakefile(targets []string) Makefile {
+func bootstrapMakefile(targets []string) makefile {
bootstrap := `
CC:=cc
CXX:=g++
@@ -48,7 +48,7 @@ SHELL:=/bin/sh
panic(err)
}
bootstrap += fmt.Sprintf("CURDIR:=%s\n", cwd)
- mk, err := ParseMakefileString(bootstrap, bootstrapMakefileName, 0)
+ mk, err := parseMakefileString(bootstrap, bootstrapMakefileName, 0)
if err != nil {
panic(err)
}