diff options
Diffstat (limited to 'python/python.go')
| -rw-r--r-- | python/python.go | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/python/python.go b/python/python.go index 18e5b68dd..c7c523dfb 100644 --- a/python/python.go +++ b/python/python.go @@ -263,6 +263,12 @@ func versionSplitMutator() func(android.BottomUpMutatorContext) { versionProps = append(versionProps, props.Version.Py3) } if proptools.BoolDefault(props.Version.Py2.Enabled, false) { + if !mctx.DeviceConfig().BuildBrokenUsesSoongPython2Modules() && + mctx.ModuleName() != "par_test" && + mctx.ModuleName() != "py2-cmd" && + mctx.ModuleName() != "py2-stdlib" { + mctx.PropertyErrorf("version.py2.enabled", "Python 2 is no longer supported, please convert to python 3. This error can be temporarily overridden by setting BUILD_BROKEN_USES_SOONG_PYTHON2_MODULES := true in the product configuration") + } versionNames = append(versionNames, pyVersion2) versionProps = append(versionProps, props.Version.Py2) } @@ -532,7 +538,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"} |