commit | 2811e07868b35b4013298cf09548f047a7bd30fc | [log] [tgz] |
---|---|---|
author | Jiyong Park <jiyong@google.com> | Thu Sep 30 17:25:21 2021 +0900 |
committer | Jiyong Park <jiyong@google.com> | Thu Sep 30 17:25:21 2021 +0900 |
tree | da3244c291bdeea7dd50d9e0a867149794906261 | |
parent | 6f37dba455e99974971e4e408130b8a5ffd55482 [diff] [blame] |
rust modules respects the installable property So far, the property wasn't respected. Bug: N/A Test: m Change-Id: Ie3b011250595f02c3ab315efbac6694df3e181e7
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 }