aboutsummaryrefslogtreecommitdiff
path: root/sh
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2021-11-08 12:37:57 -0800
committerColin Cross <ccross@android.com>2021-11-08 13:32:02 -0800
commit7e07e20723f1ce8d11e830000e23596b503b99ca (patch)
treef16b09735936afd5dbba9791151ecaddd20bdd4f /sh
parent7743557a23fedaa962c72542b94fe2675d5d9f62 (diff)
Move sh_binary module installation into Soong
Move sh_binary module installation rules into Soong by overriding InstallBypassMake. Bug: 204136549 Bug: 205530905 Test: m checkbuild Test: m && acloud create --local-instance --local-image Change-Id: I3f9928c6d6993c381859b80c335b800b1a9769ee
Diffstat (limited to 'sh')
-rw-r--r--sh/sh_binary.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/sh/sh_binary.go b/sh/sh_binary.go
index b22a5b750..bf97b88f8 100644
--- a/sh/sh_binary.go
+++ b/sh/sh_binary.go
@@ -168,6 +168,10 @@ type ShBinary struct {
var _ android.HostToolProvider = (*ShBinary)(nil)
+func (s *ShBinary) InstallBypassMake() bool {
+ return true
+}
+
type ShTest struct {
ShBinary