have make sort be less noisy

adding the @ at the start of the two lines causes make to not echo out
the command it is running.

Signed-off-by: Dennis Gilmore <dennis@ausil.us>
This commit is contained in:
Dennis Gilmore 2017-04-12 07:09:30 -05:00
parent 09eee8e0ff
commit 435ee6ea79
1 changed files with 2 additions and 2 deletions

View File

@ -17,8 +17,8 @@ validate: $(XMLFILES) comps.rng
done; exit $$RES
sort:
# Run xsltproc on each xml.in file and exit with non-zero if any sorting fails
RES=0; for f in $(XMLINFILES); do \
@# Run xsltproc on each xml.in file and exit with non-zero if any sorting fails
@RES=0; for f in $(XMLINFILES); do \
xsltproc --novalid -o $$f comps-cleanup.xsl $$f; \
RES=$$(($$RES + $$?)); \
done; exit $$RES