Bug 907337 - Remove the special case for NO_DIST_INSTALL in emitter.py; r=mshal

It is obsoleted by the general case in recursivemake.py.
This commit is contained in:
Ms2ger 2013-08-22 08:56:02 +02:00
parent 9561aa1c4c
commit 0b894b16bd
2 changed files with 2 additions and 4 deletions

View File

@ -135,6 +135,7 @@ class TreeMetadataEmitter(LoggingMixin):
LIBXUL_LIBRARY='LIBXUL_LIBRARY',
MODULE='MODULE',
MSVC_ENABLE_PGO='MSVC_ENABLE_PGO',
NO_DIST_INSTALL='NO_DIST_INSTALL',
SDK_LIBRARY='SDK_LIBRARY',
SHARED_LIBRARY_LIBS='SHARED_LIBRARY_LIBS',
SIMPLE_PROGRAMS='SIMPLE_PROGRAMS',
@ -144,9 +145,6 @@ class TreeMetadataEmitter(LoggingMixin):
if sandbox[moz]:
passthru.variables[mak] = sandbox[moz]
if sandbox['NO_DIST_INSTALL']:
passthru.variables['NO_DIST_INSTALL'] = '1'
if passthru.variables:
yield passthru

View File

@ -147,7 +147,7 @@ class TestEmitterBasic(unittest.TestCase):
LIBS=['fans.lib', 'tans.lib'],
LIBXUL_LIBRARY=True,
MSVC_ENABLE_PGO=True,
NO_DIST_INSTALL='1',
NO_DIST_INSTALL=True,
MODULE='module_name',
SDK_LIBRARY=['fans.sdk', 'tans.sdk'],
SHARED_LIBRARY_LIBS=['fans.sll', 'tans.sll'],