From 40a355a42d4a9444dc753c04c6608dade2f06a23 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 03:13:27 +0200 Subject: Adding upstream version 125.0.1. Signed-off-by: Daniel Baumann --- tools/rb/fix_stacks.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'tools/rb/fix_stacks.py') diff --git a/tools/rb/fix_stacks.py b/tools/rb/fix_stacks.py index f30aa9944a..29aa396219 100755 --- a/tools/rb/fix_stacks.py +++ b/tools/rb/fix_stacks.py @@ -16,7 +16,7 @@ from subprocess import PIPE, Popen # Matches lines produced by MozFormatCodeAddress(), e.g. # `#01: ???[tests/example +0x43a0]`. -line_re = re.compile("#\d+: .+\[.+ \+0x[0-9A-Fa-f]+\]") +line_re = re.compile(r"#\d+: .+\[.+ \+0x[0-9A-Fa-f]+\]") fix_stacks = None @@ -35,9 +35,6 @@ def autobootstrap(): ) moz_configure = os.path.join(buildconfig.topsrcdir, "build", "moz.configure") sandbox.include_file(os.path.join(moz_configure, "init.configure")) - # bootstrap_search_path_order has a dependency on developer_options, which - # is not defined in init.configure. Its value doesn't matter for us, though. - sandbox["developer_options"] = sandbox["always"] sandbox.include_file(os.path.join(moz_configure, "bootstrap.configure")) # Expand the `bootstrap_path` template for "fix-stacks", and execute the # expanded function via `_value_for`, which will trigger autobootstrap. -- cgit v1.2.3