summaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@wolfbeast.com>2020-03-28 14:44:34 +0100
committerwolfbeast <mcwerewolf@wolfbeast.com>2020-04-14 13:18:02 +0200
commitedb5796d587ff31e6764c995c67024ef700c8858 (patch)
treee59a676c6cdc92178b301ab958f0b92e405568ee /python
parentc23e3b25f80623f0608ce034f5a520fc2034f82e (diff)
downloadUXP-edb5796d587ff31e6764c995c67024ef700c8858.tar
UXP-edb5796d587ff31e6764c995c67024ef700c8858.tar.gz
UXP-edb5796d587ff31e6764c995c67024ef700c8858.tar.lz
UXP-edb5796d587ff31e6764c995c67024ef700c8858.tar.xz
UXP-edb5796d587ff31e6764c995c67024ef700c8858.zip
Issue #1497 Revert "Check if there are any unpreprocessed files"
This reverts PR #429
Diffstat (limited to 'python')
-rw-r--r--python/mozbuild/mozbuild/mach_commands.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/python/mozbuild/mozbuild/mach_commands.py b/python/mozbuild/mozbuild/mach_commands.py
index 43c189dd9..6e57ab5ae 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',