diff options
| -rw-r--r-- | apex/apex.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apex/apex.go b/apex/apex.go index 177856e61..81e969d2f 100644 --- a/apex/apex.go +++ b/apex/apex.go @@ -570,7 +570,7 @@ func (a *apexBundle) buildUnflattenedApex(ctx android.ModuleContext, keyFile and manifest := android.PathForModuleSrc(ctx, proptools.StringDefault(a.properties.Manifest, "manifest.json")) fcName := proptools.StringDefault(a.properties.File_contexts, a.ModuleBase.Name()) - fileContextsPath := "system/sepolicy/apex/" + fcName + "_file_contexts" + fileContextsPath := "system/sepolicy/apex/" + fcName + "-file_contexts" fileContextsOptionalPath := android.ExistentPathForSource(ctx, fileContextsPath) if !fileContextsOptionalPath.Valid() { ctx.ModuleErrorf("Cannot find file_contexts file: %q", fileContextsPath) |