From 435ee6ea7995be14816f285fab9066e21810465b Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 12 Apr 2017 07:09:30 -0500 Subject: [PATCH] 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 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 426d1d20..2f8566fe 100644 --- a/Makefile +++ b/Makefile @@ -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