about summary refs log tree commit diff
path: root/src/bootstrap/bootstrap.py
diff options
context:
space:
mode:
authorChris Denton <chris@chrisdenton.dev>2025-01-24 22:05:30 +0000
committerChris Denton <chris@chrisdenton.dev>2025-01-24 22:05:30 +0000
commitab7793d4d4d35551480cb2b6823903974316a9fa (patch)
tree27f4b24b95033fa533d46545bac406cc4dcbf9d4 /src/bootstrap/bootstrap.py
parent8231e8599e238ff4e717639bd68c6abb8579fe8d (diff)
downloadrust-ab7793d4d4d35551480cb2b6823903974316a9fa.tar.gz
rust-ab7793d4d4d35551480cb2b6823903974316a9fa.zip
Don't move ownership of job object
Diffstat (limited to 'src/bootstrap/bootstrap.py')
-rw-r--r--src/bootstrap/bootstrap.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/bootstrap/bootstrap.py b/src/bootstrap/bootstrap.py
index 74923af1555..01a9792f1b3 100644
--- a/src/bootstrap/bootstrap.py
+++ b/src/bootstrap/bootstrap.py
@@ -1310,9 +1310,6 @@ def bootstrap(args):
     args = [build.bootstrap_binary()]
     args.extend(sys.argv[1:])
     env = os.environ.copy()
-    # The Python process ID is used when creating a Windows job object
-    # (see src\bootstrap\src\utils\job.rs)
-    env["BOOTSTRAP_PARENT_ID"] = str(os.getpid())
     env["BOOTSTRAP_PYTHON"] = sys.executable
     run(args, env=env, verbose=build.verbose, is_bootstrap=True)