summaryrefslogtreecommitdiff
path: root/apex/apex.go
diff options
context:
space:
mode:
author Steven Moreland <smoreland@google.com> 2020-10-22 23:08:18 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2020-10-22 23:08:18 +0000
commit8f01ff814b8075800bbf5fb792e60e511c2896ff (patch)
tree6390d6fb664537ad32b3d1342d49e5042bf43fc1 /apex/apex.go
parent5ac5247c261cbb9db7bdadf47c4d064b1e6d1256 (diff)
parent6e36cd6104d661b42794c26c8b75e873cb21b71a (diff)
Merge "apex dependency error: note 'apex_available'"
Diffstat (limited to 'apex/apex.go')
-rw-r--r--apex/apex.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/apex/apex.go b/apex/apex.go
index a9a58a66d..25cd09ddf 100644
--- a/apex/apex.go
+++ b/apex/apex.go
@@ -2075,7 +2075,7 @@ func (a *apexBundle) checkApexAvailability(ctx android.ModuleContext) {
if to.AvailableFor(apexName) || baselineApexAvailable(apexName, toName) {
return true
}
- ctx.ModuleErrorf("%q requires %q that is not available for the APEX. Dependency path:%s", fromName, toName, ctx.GetPathString(true))
+ ctx.ModuleErrorf("%q requires %q that doesn't list the APEX under 'apex_available'. Dependency path:%s", fromName, toName, ctx.GetPathString(true))
// Visit this module's dependencies to check and report any issues with their availability.
return true
})