aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Tefke <t.tefke@stud.fh-sm.de>2020-06-23 15:50:36 +0200
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2020-09-04 15:27:23 +0200
commit82a5647ec59eb4ffdb34b83d1549c11fa56ce85b (patch)
treeeabef50caeeaed764bc42d2cceafada6c59df658
parent2669d3ddcf25fe87ad550f5c302485dcb88be7e8 (diff)
downloadbuild_soong-replicant-10.tar.gz
build_soong-replicant-10.tar.bz2
build_soong-replicant-10.zip
Allow tools for building mesareplicant-10
Mesa needs some external host tools tools that are not allowed by Soong. We have to allow these tools, otherwise error messages like the following will be displayed: "xgettext" is not allowed to be used. See https://android.googlesource.com/platform/build/+/master/Changes.md#PATH_Tools for more information. Signed-off-by: Tobias Tefke <t.tefke@stud.fh-sm.de> Change-Id: Ife48e4ddf2f638b992a58e786a9680c98a40208b GNUtoo: Added bison, flex, nano Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rw-r--r--ui/build/paths/config.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/ui/build/paths/config.go b/ui/build/paths/config.go
index 32934ff5..7e0c60ce 100644
--- a/ui/build/paths/config.go
+++ b/ui/build/paths/config.go
@@ -76,6 +76,7 @@ func GetConfig(name string) PathConfig {
var Configuration = map[string]PathConfig{
"bash": Allowed,
"bc": Allowed,
+ "bison": Allowed,
"bzip2": Allowed,
"date": Allowed,
"dd": Allowed,
@@ -83,6 +84,7 @@ var Configuration = map[string]PathConfig{
"egrep": Allowed,
"expr": Allowed,
"find": Allowed,
+ "flex": Allowed,
"fuser": Allowed,
"getopt": Allowed,
"git": Allowed,
@@ -94,6 +96,9 @@ var Configuration = map[string]PathConfig{
"javap": Allowed,
"lsof": Allowed,
"m4": Allowed,
+ "msgfmt": Allowed,
+ "msgmerge": Allowed,
+ "nano": Allowed,
"nproc": Allowed,
"openssl": Allowed,
"patch": Allowed,
@@ -108,6 +113,7 @@ var Configuration = map[string]PathConfig{
"timeout": Allowed,
"tr": Allowed,
"unzip": Allowed,
+ "xgettext": Allowed,
"xz": Allowed,
"zip": Allowed,
"zipinfo": Allowed,