summaryrefslogtreecommitdiffstats
path: root/pactest
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2008-08-24 01:27:01 +0200
committerDan McGee <dan@archlinux.org>2008-10-13 04:36:30 +0200
commitf1f8f0e1c291a2201f122e0ec1d7e6179bf11cc8 (patch)
treea477553fcc0b8427d5aaf81b6c65a144ce13cded /pactest
parentda933c223eedb66c51b4a48b6ab0ce8fcb344b5c (diff)
downloadpacman-f1f8f0e1c291a2201f122e0ec1d7e6179bf11cc8.tar.gz
pacman-f1f8f0e1c291a2201f122e0ec1d7e6179bf11cc8.tar.xz
Quiet up the make process a bit
When we do our sed edits, we really don't need every command printed out to the terminal. Now with "make -s", the output is quite palatable. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'pactest')
-rw-r--r--pactest/tests/Makefile.am11
1 files changed, 6 insertions, 5 deletions
diff --git a/pactest/tests/Makefile.am b/pactest/tests/Makefile.am
index 42ca5cbe..b793687b 100644
--- a/pactest/tests/Makefile.am
+++ b/pactest/tests/Makefile.am
@@ -17,10 +17,11 @@ edit = sed \
$(CONFTESTS): Makefile
- rm -f $@ $@.tmp
- test -f $(srcdir)/$@.in && $(edit) $(srcdir)/$@.in >$@.tmp || true
- test -f $@.tmp || false
- chmod a-w $@.tmp
- mv $@.tmp $@
+ @echo ' ' GEN $@;
+ @rm -f $@ $@.tmp
+ @test -f $(srcdir)/$@.in && $(edit) $(srcdir)/$@.in >$@.tmp || true
+ @test -f $@.tmp || false
+ @chmod a-w $@.tmp
+ @mv $@.tmp $@
# vim:set ts=2 sw=2 noet: