diff options
| author | 2023-03-01 04:29:09 +0000 | |
|---|---|---|
| committer | 2023-03-01 04:29:09 +0000 | |
| commit | 0f0d3ce49c59375140853da12aad335cde2f51f0 (patch) | |
| tree | 045c80e4f16d98f1e8c7d4bebb164d047b2b0674 /python/python.go | |
| parent | 732592c15109681b144c72da45516cef29348e2a (diff) | |
| parent | 18994c73f11db00371be747c8dca6da1c01fa2ef (diff) | |
Merge "Replace SortedStringKeys with SortedKeys"
Diffstat (limited to 'python/python.go')
| -rw-r--r-- | python/python.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/python.go b/python/python.go index 18e5b68dd..0ae7b3691 100644 --- a/python/python.go +++ b/python/python.go @@ -532,7 +532,7 @@ func (p *PythonLibraryModule) createSrcsZip(ctx android.ModuleContext, pkgPath s if len(relativeRootMap) > 0 { // in order to keep stable order of soong_zip params, we sort the keys here. - roots := android.SortedStringKeys(relativeRootMap) + roots := android.SortedKeys(relativeRootMap) // Use -symlinks=false so that the symlinks in the bazel output directory are followed parArgs := []string{"-symlinks=false"} |