commit | f7ff81ca95ca5ed2e86e920fb83f829644181fa0 | [log] [tgz] |
---|---|---|
author | Treehugger Robot <treehugger-gerrit@google.com> | Fri Oct 01 01:59:08 2021 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Fri Oct 01 01:59:08 2021 +0000 |
tree | 45f9a36295a35fffd86b8eea338b3fbda99b456b | |
parent | b1f405e66df2bf222a0dd5848ad539e0bb920a4a [diff] | |
parent | 2811e07868b35b4013298cf09548f047a7bd30fc [diff] |
Merge "rust modules respects the installable property"
diff --git a/rust/rust.go b/rust/rust.go index 0a7d68d..b9afc7f 100644 --- a/rust/rust.go +++ b/rust/rust.go
@@ -663,7 +663,7 @@ } func (mod *Module) installable(apexInfo android.ApexInfo) bool { - if !mod.EverInstallable() { + if !proptools.BoolDefault(mod.Installable(), mod.EverInstallable()) { return false }