summaryrefslogtreecommitdiffstats
path: root/test/urls
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2014-08-01 12:32:31 +0800
committerJeremy Kerr <jk@ozlabs.org>2014-08-05 10:31:28 +0800
commitd1f814a1e310b5c1e6b32d5bdbf7b7450c221325 (patch)
tree43d51d4fcec08c5819fb7ab7b1ca1e9cff8fab3f /test/urls
parentd1c07faf5b5979c19c4709f7195c612fb0a9dd2e (diff)
downloadtalos-petitboot-d1f814a1e310b5c1e6b32d5bdbf7b7450c221325.tar.gz
talos-petitboot-d1f814a1e310b5c1e6b32d5bdbf7b7450c221325.zip
automake: silence make output
Currently, we get a lot of noise out of the build process; automake supports V={0,1}, which we can use to suppress the output a little. This needs a few cleanups for custom commands. Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Diffstat (limited to 'test/urls')
-rw-r--r--test/urls/Makefile.am7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/urls/Makefile.am b/test/urls/Makefile.am
index 47040ae..ad670b8 100644
--- a/test/urls/Makefile.am
+++ b/test/urls/Makefile.am
@@ -45,10 +45,9 @@ edit = sed \
EXTRA_DIST += $(url_TESTS) test/urls/run-url-test.in
test/urls/run-url-test: $(srcdir)/test/urls/run-url-test.in
- rm -f $@ $@.tmp
- $(edit) $(srcdir)/$@.in >$@.tmp
- chmod +x $@.tmp
- mv $@.tmp $@
+ $(AM_V_GEN)$(edit) $(srcdir)/$@.in > $@.tmp && \
+ chmod +x $@.tmp && \
+ mv $@.tmp $@
CLEANFILES += test/urls/run-url-test
OpenPOWER on IntegriCloud