summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2018-02-03 08:22:52 -0500
committerMatt A. Tobin <email@mattatobin.com>2018-02-03 08:22:52 -0500
commitab1cbb8b57fc83707f5f97beb939ed98648e5ac2 (patch)
treea253fdf254e4c0cb87c0fcf69c8b3b5761f31530 /python
parentfbb3ce636bd81128c635bfe6c7448fc9a1a25900 (diff)
downloadaura-central-ab1cbb8b57fc83707f5f97beb939ed98648e5ac2.tar.gz
Use MOZ_PHOENIX instead of checking for 'browser' in MOZ_BUILD_APP
Diffstat (limited to 'python')
-rw-r--r--python/mozbuild/mozbuild/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/mozbuild/mozbuild/base.py b/python/mozbuild/mozbuild/base.py
index a50b8ff89..9ca689009 100644
--- a/python/mozbuild/mozbuild/base.py
+++ b/python/mozbuild/mozbuild/base.py
@@ -740,7 +740,7 @@ class MachCommandConditions(object):
def is_firefox(cls):
"""Must have a Firefox build."""
if hasattr(cls, 'substs'):
- return cls.substs.get('MOZ_BUILD_APP') == 'browser'
+ return cls.substs.get('MOZ_PHOENIX') == 1
return False
@staticmethod