From 1b246cc692a34fc5caee2ec6e154fb3a53665f56 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 22 Sep 2007 23:26:37 +0200 Subject: [PATCH] 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. --- ChangeLog | 3 +++ tests/check.mk | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d96f4aa0f4..be7b73cd4c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2007-09-22 Jim Meyering + 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. + rm: give a sensible diagnostic when failing to remove a symlink On some systems (those with openat et al), when rm would fail to remove a symlink, it would fail with the misleading diagnostic, diff --git a/tests/check.mk b/tests/check.mk index 91184cc006..3d9a11a25b 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 && \ -- 2.47.2