summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2021-10-26 16:46:27 -0400
committerMatt A. Tobin <email@mattatobin.com>2021-10-26 16:46:27 -0400
commit7fc7b318389d3a61f6498cb693ee9d653b648ea7 (patch)
treebe38f65068c5040d63329438e496d248a38ca52b /python
parent2f208c1685f48e2287ea981c40a391e2234c71c3 (diff)
downloadaura-central-7fc7b318389d3a61f6498cb693ee9d653b648ea7.tar.gz
Issue %3028 - Part 2: Remove config and blatant (but not all) mentions of XULRunner
Diffstat (limited to 'python')
-rw-r--r--python/mozbuild/mozbuild/base.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/python/mozbuild/mozbuild/base.py b/python/mozbuild/mozbuild/base.py
index 24791b618..384a5028e 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