diff options
author | Jim Meyering <jim@meyering.net> | 2007-09-22 23:26:37 +0200 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2007-09-22 23:26:45 +0200 |
commit | 1b246cc692a34fc5caee2ec6e154fb3a53665f56 (patch) | |
tree | e7c0b4d7e18f513e3ec8dfe7254be2dfe633e4b3 /tests/check.mk | |
parent | a7ec8caffe1a48590f5e3da9400080ab8a6ec303 (diff) | |
download | coreutils-1b246cc692a34fc5caee2ec6e154fb3a53665f56.tar.xz |
Don't print the commands of a 10-line script that's run in each subdir.
* tests/check.mk (vc_exe_in_TESTS): Add a leading "@", to reduce noise.
Diffstat (limited to 'tests/check.mk')
-rw-r--r-- | tests/check.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/check.mk b/tests/check.mk index 91184cc00..3d9a11a25 100644 --- a/tests/check.mk +++ b/tests/check.mk @@ -17,7 +17,7 @@ # Ensure that all version-controlled executable files are listed in TESTS. _v = TESTS vc_exe_in_TESTS: Makefile - if test -d $(top_srcdir)/.git; then \ + @if test -d $(top_srcdir)/.git; then \ sed -n '/^$(_v) =/,/[^\]$$/p' $(srcdir)/Makefile.am \ | sed 's/^ *//;/^\$$.*/d;/^$(_v) =/d' \ | tr -s '\012\\' ' ' | fmt -1 | sort -u > t1 && \ |