Merge "Use python / python2.7 prebuilts"

This commit is contained in:
Dan Willemsen
2019-02-20 01:51:06 +00:00
committed by Gerrit Code Review

View File

@@ -74,41 +74,39 @@ func GetConfig(name string) PathConfig {
} }
var Configuration = map[string]PathConfig{ var Configuration = map[string]PathConfig{
"bash": Allowed, "bash": Allowed,
"bc": Allowed, "bc": Allowed,
"bzip2": Allowed, "bzip2": Allowed,
"date": Allowed, "date": Allowed,
"dd": Allowed, "dd": Allowed,
"diff": Allowed, "diff": Allowed,
"egrep": Allowed, "egrep": Allowed,
"find": Allowed, "find": Allowed,
"fuser": Allowed, "fuser": Allowed,
"getopt": Allowed, "getopt": Allowed,
"git": Allowed, "git": Allowed,
"grep": Allowed, "grep": Allowed,
"gzip": Allowed, "gzip": Allowed,
"hexdump": Allowed, "hexdump": Allowed,
"jar": Allowed, "jar": Allowed,
"java": Allowed, "java": Allowed,
"javap": Allowed, "javap": Allowed,
"lsof": Allowed, "lsof": Allowed,
"m4": Allowed, "m4": Allowed,
"openssl": Allowed, "openssl": Allowed,
"patch": Allowed, "patch": Allowed,
"pstree": Allowed, "pstree": Allowed,
"python": Allowed, "python3": Allowed,
"python2.7": Allowed, "realpath": Allowed,
"python3": Allowed, "rsync": Allowed,
"realpath": Allowed, "sh": Allowed,
"rsync": Allowed, "tar": Allowed,
"sh": Allowed, "timeout": Allowed,
"tar": Allowed, "tr": Allowed,
"timeout": Allowed, "unzip": Allowed,
"tr": Allowed, "xz": Allowed,
"unzip": Allowed, "zip": Allowed,
"xz": Allowed, "zipinfo": Allowed,
"zip": Allowed,
"zipinfo": Allowed,
// Host toolchain is removed. In-tree toolchain should be used instead. // Host toolchain is removed. In-tree toolchain should be used instead.
// GCC also can't find cc1 with this implementation. // GCC also can't find cc1 with this implementation.