From 7e07e20723f1ce8d11e830000e23596b503b99ca Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Mon, 8 Nov 2021 12:37:57 -0800 Subject: [PATCH] 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 --- sh/sh_binary.go | 4 ++++ 1 file changed, 4 insertions(+) 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