diff options
author | Matt A. Tobin <email@mattatobin.com> | 2021-10-26 16:46:27 -0400 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2022-04-01 17:33:23 +0200 |
commit | 4a7af0d90fd6521047fb57c37be455b1e8887e79 (patch) | |
tree | 148486650ecac3dfd74c7da2d68714c86aa46dd8 /python | |
parent | 0f52679d2e0445503869382943076d7733b56522 (diff) | |
download | uxp-4a7af0d90fd6521047fb57c37be455b1e8887e79.tar.gz |
Issue #1835 - Part 2: Remove config and most mentions of XULRunner
Resolves #1835
Diffstat (limited to 'python')
-rw-r--r-- | python/mozbuild/mozbuild/base.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/python/mozbuild/mozbuild/base.py b/python/mozbuild/mozbuild/base.py index 24791b6182..384a5028e8 100644 --- a/python/mozbuild/mozbuild/base.py +++ b/python/mozbuild/mozbuild/base.py @@ -318,13 +318,7 @@ class MozbuildObject(ProcessExecutionMixin): if where == 'staged-package': stem = os.path.join(stem, substs['MOZ_APP_NAME']) - if substs['OS_ARCH'] == 'Darwin': - if substs['MOZ_BUILD_APP'] == 'xulrunner': - stem = os.path.join(stem, 'XUL.framework'); - else: - stem = os.path.join(stem, substs['MOZ_MACBUNDLE_NAME'], 'Contents', - 'MacOS') - elif where == 'default': + if where == 'default': stem = os.path.join(stem, 'bin') leaf = None |