diff options
author | 2024-06-27 04:30:30 +0000 | |
---|---|---|
committer | 2024-06-27 04:30:30 +0000 | |
commit | f58d7efa297432b875e47d67f6665b9fd587bed8 (patch) | |
tree | e258a8ee00923c724a8541c79f1de9cffcaf37a2 /android/paths.go | |
parent | 8eecb134e338c6560d862ae8888d6c25e7cee1a4 (diff) | |
parent | b7e9f5f0359685a9609105bed182933b29cc10b3 (diff) |
Merge "Revert "Use hashed subdir for soong_config modules"" into main
Diffstat (limited to 'android/paths.go')
-rw-r--r-- | android/paths.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/android/paths.go b/android/paths.go index adbee70be..03772ebcb 100644 --- a/android/paths.go +++ b/android/paths.go @@ -1604,11 +1604,10 @@ type ModuleOutPathContext interface { ModuleName() string ModuleDir() string ModuleSubDir() string - SoongConfigTraceHash() string } func pathForModuleOut(ctx ModuleOutPathContext) OutputPath { - return PathForOutput(ctx, ".intermediates", ctx.ModuleDir(), ctx.ModuleName(), ctx.ModuleSubDir(), ctx.SoongConfigTraceHash()) + return PathForOutput(ctx, ".intermediates", ctx.ModuleDir(), ctx.ModuleName(), ctx.ModuleSubDir()) } // PathForModuleOut returns a Path representing the paths... under the module's |