diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-03-01 14:35:14 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-03-01 14:35:14 -0500 |
commit | ba2c2e5301bb2d993984c62cdf2fd07b361e6bca (patch) | |
tree | aa7420c3256f4917e427eaa62292cc8b10e378e0 /python | |
parent | 11a8a39f6d2e057d51559c52c1bf0ba74bbfe189 (diff) | |
download | uxp-ba2c2e5301bb2d993984c62cdf2fd07b361e6bca.tar.gz |
Remove MOZ_MULET
Diffstat (limited to 'python')
-rwxr-xr-x | python/mozbuild/mozbuild/mozinfo.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/python/mozbuild/mozbuild/mozinfo.py b/python/mozbuild/mozbuild/mozinfo.py index f0b0df9bb0..2c08c4e9f0 100755 --- a/python/mozbuild/mozbuild/mozinfo.py +++ b/python/mozbuild/mozbuild/mozinfo.py @@ -52,9 +52,7 @@ def build_dict(config, env=os.environ): d["appname"] = substs["MOZ_APP_NAME"] # Build app name - if 'MOZ_MULET' in substs and substs.get('MOZ_MULET') == "1": - d["buildapp"] = "mulet" - elif 'MOZ_BUILD_APP' in substs: + if 'MOZ_BUILD_APP' in substs: d["buildapp"] = substs["MOZ_BUILD_APP"] # processor |