diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-03-28 14:44:34 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-03-28 14:44:34 +0100 |
commit | e51d9fbc10d626a57720b6065149da3f4e535c37 (patch) | |
tree | a256fb92f048884a983053d19646e17a37cf9d74 | |
parent | 2dfd75f7f8addc0fa2e892824d31d0f6c00cbf25 (diff) | |
download | uxp-e51d9fbc10d626a57720b6065149da3f4e535c37.tar.gz |
Issue #1497 Revert "Check if there are any unpreprocessed files"
This reverts PR #429
-rw-r--r-- | python/mozbuild/mozbuild/mach_commands.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/python/mozbuild/mozbuild/mach_commands.py b/python/mozbuild/mozbuild/mach_commands.py index 43c189dd97..6e57ab5ae9 100644 --- a/python/mozbuild/mozbuild/mach_commands.py +++ b/python/mozbuild/mozbuild/mach_commands.py @@ -541,16 +541,6 @@ class Build(MachCommandBase): # as when doing OSX Universal builds) pass - # Check if there are any unpreprocessed files in '@MOZ_OBJDIR@/dist/bin' - # See python/mozbuild/mozbuild/preprocessor.py#L293-L309 for the list of directives - # We skip if, ifdef, ifndef, else, elif, elifdef and elifndef, because they are never used alone - grepcmd = 'grep -E -r "^(#|%)(define|endif|error|expand|filter|include|literal|undef|unfilter)" '\ - + '--include=\*.{css,dtd,html,js,jsm,xhtml,xml,xul,manifest,properties,rdf} '\ - + self.topobjdir + '/dist/bin | awk "/\.css:%/ || (!/\.css/ && /:#/)"' - grepresult = subprocess.Popen(grepcmd, stdout=subprocess.PIPE, shell=True).communicate()[0] - if grepresult: - print('\nERROR: preprocessor was not applied to the following files:\n\n' + grepresult) - return status @Command('configure', category='build', |