diff options
author | 2024-07-25 07:27:59 +0000 | |
---|---|---|
committer | 2024-07-25 07:27:59 +0000 | |
commit | b30210825232dba2ed149793a553781ef9abc92c (patch) | |
tree | a08fa46a56cd0fdc7f63e36c158037abcf00db41 | |
parent | 625f66136dda856ec03642bf5699b9aa4f614953 (diff) | |
parent | 3a6928227186c032829f76cd97b861a52c568d16 (diff) |
Merge "Set output for build_prop even on Soong only build" into main
-rw-r--r-- | android/build_prop.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/android/build_prop.go b/android/build_prop.go index c226431a7..80bbfc19d 100644 --- a/android/build_prop.go +++ b/android/build_prop.go @@ -79,6 +79,7 @@ func (p *buildPropModule) GenerateAndroidBuildActions(ctx ModuleContext) { p.outputFilePath = PathForModuleOut(ctx, "build.prop").OutputPath if !ctx.Config().KatiEnabled() { WriteFileRule(ctx, p.outputFilePath, "# no build.prop if kati is disabled") + ctx.SetOutputFiles(Paths{p.outputFilePath}, "") return } |