diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:27 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:27 +0000 |
commit | 40a355a42d4a9444dc753c04c6608dade2f06a23 (patch) | |
tree | 871fc667d2de662f171103ce5ec067014ef85e61 /tools/rb/fix_stacks.py | |
parent | Adding upstream version 124.0.1. (diff) | |
download | firefox-upstream/125.0.1.tar.xz firefox-upstream/125.0.1.zip |
Adding upstream version 125.0.1.upstream/125.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tools/rb/fix_stacks.py')
-rwxr-xr-x | tools/rb/fix_stacks.py | 5 |
1 files changed, 1 insertions, 4 deletions
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. |