diff options
author | 2025-02-04 16:27:10 -0800 | |
---|---|---|
committer | 2025-02-04 16:27:10 -0800 | |
commit | 2faf92bd973376053fa0c8386a61e2acc6f0591f (patch) | |
tree | b552cb96e346ccffbed1b04bbf0f0ecb0879ad7b /fsgen/filesystem_creator.go | |
parent | 4bf1e166bbfbdb20877e21b3b78984f4e4b07a36 (diff) | |
parent | 68fb7cb68da47e36d80285e69b1d597ea7d6dbea (diff) |
Merge changes I5057c2cc,I83ac66c6 into main
* changes:
Fixes for missing rules in m --soong-only
Install intermediate file in testcases
Diffstat (limited to 'fsgen/filesystem_creator.go')
-rw-r--r-- | fsgen/filesystem_creator.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fsgen/filesystem_creator.go b/fsgen/filesystem_creator.go index 9dcbec1c0..63d079125 100644 --- a/fsgen/filesystem_creator.go +++ b/fsgen/filesystem_creator.go @@ -1163,6 +1163,10 @@ func (f *filesystemCreator) GenerateAndroidBuildActions(ctx android.ModuleContex ctx.Phony("product_config_to_bp", generatedBp) + if !ctx.Config().KatiEnabled() { + // Cannot diff since the kati packaging rules will not be created. + return + } var diffTestFiles []android.Path for _, partitionType := range partitions.types() { diffTestFile := f.createFileListDiffTest(ctx, partitionType, partitions.nameForType(partitionType)) |