diff options
author | 2025-02-19 17:27:29 -0800 | |
---|---|---|
committer | 2025-02-20 10:40:37 -0800 | |
commit | 8967d7562557001eb10e216ba7a947fb6054c67c (patch) | |
tree | 0357b2360e9c439143909c22dd6cee2c44f5e054 /filesystem/android_device.go | |
parent | 4b1a0b83301ff2dfeaa1de93f741a8886ed4ffeb (diff) |
Remove --sort_entries from soong_zip
We can just always sort the entries and not worry about passing the
flag or not.
Bug: 395160816
Test: Presubmits
Change-Id: Ic1a8b8ef9c74368d1aed77a228c52ccc08b3375f
Diffstat (limited to 'filesystem/android_device.go')
-rw-r--r-- | filesystem/android_device.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/filesystem/android_device.go b/filesystem/android_device.go index 47c4e3d0c..6d40103a3 100644 --- a/filesystem/android_device.go +++ b/filesystem/android_device.go @@ -214,7 +214,7 @@ func (a *androidDevice) GenerateAndroidBuildActions(ctx android.ModuleContext) { allImagesZip := android.PathForModuleOut(ctx, "all_images.zip") allImagesZipBuilder := android.NewRuleBuilder(pctx, ctx) - cmd := allImagesZipBuilder.Command().BuiltTool("soong_zip").Flag("--sort_entries") + cmd := allImagesZipBuilder.Command().BuiltTool("soong_zip") for _, dep := range deps { cmd.FlagWithArg("-e ", dep.Base()) cmd.FlagWithInput("-f ", dep) |