diff options
author | 2022-10-05 11:50:04 -0700 | |
---|---|---|
committer | 2022-10-05 11:51:26 -0700 | |
commit | 5fe655d1c71ee079dd46e93c96b54aae39a10d16 (patch) | |
tree | f6674c96179ae1a7d54150a18cc85b5d8a9ea9ac /python/binary.go | |
parent | 7ea3a8248060ee279d17bf2ca71051d049917278 (diff) |
Enable new python path behavior by default
Now that usages have been updated, enable the new
behavior by default. If everything goes well with
this, we can then remove the flags.
Bug: 245583294
Bug: 247578564
Test: Presubmits
Change-Id: Idac8d2dc0f96ae750dba4a99b32525676d0d6f25
Diffstat (limited to 'python/binary.go')
-rw-r--r-- | python/binary.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/binary.go b/python/binary.go index e6324a3b5..f4ad626b8 100644 --- a/python/binary.go +++ b/python/binary.go @@ -192,8 +192,8 @@ func (binary *binaryDecorator) bootstrap(ctx android.ModuleContext, actualVersio }) } - addTopDirectoriesToPath := !proptools.BoolDefault(binary.binaryProperties.Dont_add_top_level_directories_to_path, false) - dontAddEntrypointFolderToPath := proptools.BoolDefault(binary.binaryProperties.Dont_add_entrypoint_folder_to_path, false) + addTopDirectoriesToPath := !proptools.BoolDefault(binary.binaryProperties.Dont_add_top_level_directories_to_path, true) + dontAddEntrypointFolderToPath := proptools.BoolDefault(binary.binaryProperties.Dont_add_entrypoint_folder_to_path, true) binFile := registerBuildActionForParFile(ctx, embeddedLauncher, launcherPath, binary.getHostInterpreterName(ctx, actualVersion), |