aboutsummaryrefslogtreecommitdiffstats
path: root/apex
diff options
context:
space:
mode:
authorJaewoong Jung <jungjw@google.com>2019-02-28 16:22:30 +0000
committerJaewoong Jung <jungjw@google.com>2019-02-28 16:22:30 +0000
commitacb6db331bca698a806114f3de0fe8a04cdb5938 (patch)
tree2d4e4b6b56231815a7e00471146b77c01c4e5236 /apex
parentaa65e17016152d0d73cd10ab3987bc3bd5c2ef91 (diff)
downloadbuild_soong-acb6db331bca698a806114f3de0fe8a04cdb5938.tar.gz
build_soong-acb6db331bca698a806114f3de0fe8a04cdb5938.tar.bz2
build_soong-acb6db331bca698a806114f3de0fe8a04cdb5938.zip
Revert "Add override_module."
This reverts commit aa65e17016152d0d73cd10ab3987bc3bd5c2ef91. Reason for revert: Not compatible with PRODUCT_PACKAGES, and so has very limited use. Change-Id: Ib141d3984a6f12bb50989e66037494c466b066f1
Diffstat (limited to 'apex')
-rw-r--r--apex/apex.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/apex/apex.go b/apex/apex.go
index 5d0c52a9..9ab51875 100644
--- a/apex/apex.go
+++ b/apex/apex.go
@@ -534,7 +534,7 @@ func (a *apexBundle) DepsMutator(ctx android.BottomUpMutatorContext) {
func (a *apexBundle) getCertString(ctx android.BaseContext) string {
certificate, overridden := ctx.DeviceConfig().OverrideCertificateFor(ctx.ModuleName())
if overridden {
- return certificate
+ return ":" + certificate
}
return String(a.properties.Certificate)
}