diff options
author | Dan McGee <dan@archlinux.org> | 2008-08-24 01:27:01 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-10-13 04:36:30 +0200 |
commit | f1f8f0e1c291a2201f122e0ec1d7e6179bf11cc8 (patch) | |
tree | a477553fcc0b8427d5aaf81b6c65a144ce13cded /pactest | |
parent | da933c223eedb66c51b4a48b6ab0ce8fcb344b5c (diff) | |
download | pacman-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.am | 11 |
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: |