summaryrefslogtreecommitdiff
path: root/python/binary.go
diff options
context:
space:
mode:
author Cole Faust <colefaust@google.com> 2022-10-11 18:12:29 +0000
committer Cole Faust <colefaust@google.com> 2022-10-11 18:15:36 +0000
commit02ad4016ccce701bfef751a05b4fb9ef181eefc5 (patch)
treef6674c96179ae1a7d54150a18cc85b5d8a9ea9ac /python/binary.go
parent4d5cc709fa16f5dc78f690369e946fcf66156312 (diff)
Revert^2 "Enable new python path behavior by default"
This reverts commit 4d5cc709fa16f5dc78f690369e946fcf66156312. Reason for revert: Acloud issue was fixed in aosp/2243150, make sure the host unit tests are run on this cl via go/abtd before submitting Change-Id: Ie148430d331a01a9877adaf3cb88f1c57af136a0 Bug: 245583294 Bug: 247578564 Bug: 251688241
Diffstat (limited to 'python/binary.go')
-rw-r--r--python/binary.go4
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),