Index: Tools/Scripts/webkitpy/common/multiprocessing_bootstrap.py |
diff --git a/Tools/Scripts/webkitpy/common/multiprocessing_bootstrap.py b/Tools/Scripts/webkitpy/common/multiprocessing_bootstrap.py |
index 366c41314bc7278a90602ad2bbcd8f005cc61a42..9f7af98d2a36796dce0a836780ea9bc21ba69fcb 100644 |
--- a/Tools/Scripts/webkitpy/common/multiprocessing_bootstrap.py |
+++ b/Tools/Scripts/webkitpy/common/multiprocessing_bootstrap.py |
@@ -53,13 +53,6 @@ def run(*parts): |
module_path = os.path.join(script_dir, *parts) |
cmd = [sys.executable, module_path] + sys.argv[1:] |
- # Wrap processes in the jhbuild environment so DRT or WKTR |
- # doesn't need to do it and their process id as reported by |
- # subprocess.Popen is not jhbuild's. |
- if '--gtk' in sys.argv[1:] and os.path.exists(os.path.join(script_dir, '..', '..', 'WebKitBuild', 'Dependencies')): |
- prefix = [os.path.join(script_dir, '..', 'jhbuild', 'jhbuild-wrapper'), '--gtk', 'run'] |
- cmd = prefix + cmd |
- |
proc = subprocess.Popen(cmd, env=env) |
try: |
proc.wait() |