From 23890a898523d52b7e293ccee020a3a6e10a5aa2 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 6 Aug 2012 14:38:24 -0400 Subject: Use $(AM_V_GEN), don't reimplement it This allows builders to use --disable-silent-rules and get useful logs. --- xslt/common/domains/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xslt/common/domains/Makefile.am b/xslt/common/domains/Makefile.am index 526c0995..47a24334 100644 --- a/xslt/common/domains/Makefile.am +++ b/xslt/common/domains/Makefile.am @@ -6,7 +6,7 @@ $(srcdir)/yelp-xsl.pot: yelp-xsl.xml.in all: $(srcdir)/yelp-xsl.pot yelp-xsl.xml: yelp-xsl.xml.in - @echo " GEN $@"; \ + $(AM_V_GEN) ( \ if [ ! -d .yelp-xsl ]; then mkdir .yelp-xsl; fi; \ echo '' > ".yelp-xsl.files"; \ echo '' >> ".yelp-xsl.files"; \ @@ -20,7 +20,7 @@ yelp-xsl.xml: yelp-xsl.xml.in xsltproc -o "$@" "msgs.xsl" ".yelp-xsl.files" || exit 1; \ for lang in $(ALL_LINGUAS); do rm ".yelp-xsl/$$lang.xml"; done; \ rmdir .yelp-xsl; \ - rm .yelp-xsl.files + rm .yelp-xsl.files) xsldir=$(datadir)/yelp-xsl/xslt/common/domains -- cgit v1.2.1