diff options
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 |