summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2012-08-06 14:38:24 -0400
committerColin Walters <walters@verbum.org>2012-08-06 15:28:38 -0400
commit23890a898523d52b7e293ccee020a3a6e10a5aa2 (patch)
tree1f6bb73813f2f801aa87fb75d14787e17dbc5b6b
parente07a0d9dd537433b60b05f7e264b65157e78f922 (diff)
downloadyelp-xsl-23890a898523d52b7e293ccee020a3a6e10a5aa2.tar.gz
Use $(AM_V_GEN), don't reimplement it
This allows builders to use --disable-silent-rules and get useful logs.
-rw-r--r--xslt/common/domains/Makefile.am4
1 files 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 '<files>' > ".yelp-xsl.files"; \
echo '<source href="yelp-xsl.xml.in"/>' >> ".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