Makefile: skip validation step

xmlproc validates xml anyway, this speedups the build tremendously
This commit is contained in:
Jörg Thalheim 2015-09-16 20:06:42 +02:00
parent 4f43232311
commit 243fadc5be
1 changed files with 0 additions and 2 deletions

View File

@ -94,8 +94,6 @@ NOVALID:=false
ALL_XSLS = $(wildcard xsl/*.xsl)
define xml_process
@$(NOINPUTVALID) || echo $(VALIDATOR) $(VFLAGS_IN) $<
@$(NOINPUTVALID) || $(VALIDATOR) $(VFLAGS_IN) $<
$(PROCESSOR) $(PFLAGS) -o $@ $(STYLE) $<
@$(NOVALID) || echo $(VALIDATOR) $(VFLAGS_OUT) $@ || \
{ touch -m -t 197001010000 Makefile $@ ; exit 1 ; }