From cc74d59a8000f43580c1ed89e1f7f74eb84da94b Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Wed, 23 Jan 2019 14:33:20 -0800 Subject: [PATCH] Switch to one-true-awk. Test: treehugger Change-Id: I297d21f5a463c4d3070335c7533972397014f171 --- ui/build/paths/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/build/paths/config.go b/ui/build/paths/config.go index 17decd084..b9713feef 100644 --- a/ui/build/paths/config.go +++ b/ui/build/paths/config.go @@ -74,7 +74,6 @@ func GetConfig(name string) PathConfig { } var Configuration = map[string]PathConfig{ - "awk": Allowed, "bash": Allowed, "bc": Allowed, "bzip2": Allowed, @@ -127,6 +126,7 @@ var Configuration = map[string]PathConfig{ "pkg-config": Forbidden, // On Linux we'll use the toybox versions of these instead. + "awk": Toybox, // Strictly one-true-awk, but... "basename": Toybox, "cat": Toybox, "chmod": Toybox,