Fix a check for the ninja_log

soong_build uses / as it's cwd, so we need to specify the top directory
when checkign for files.

Test: add a printf in the if statement; touch out/soong/Android.bp && m nothing; ensure printf doesn't fire
Change-Id: Iba9773765547b22a03dbca33aa6b8c75359cb5ff
This commit is contained in:
Cole Faust 2024-05-13 11:57:16 -07:00
parent cd8dc70806
commit 6bb2832c15

View file

@ -108,7 +108,7 @@ func needToWriteNinjaHint(ctx *android.Context) bool {
case "always":
return true
case "depend":
if _, err := os.Stat(filepath.Join(ctx.Config().OutDir(), ".ninja_log")); errors.Is(err, os.ErrNotExist) {
if _, err := os.Stat(filepath.Join(topDir, ctx.Config().OutDir(), ".ninja_log")); errors.Is(err, os.ErrNotExist) {
return true
}
}