From: Bernhard Voelker Date: Tue, 6 Aug 2019 23:11:01 +0000 (-0700) Subject: maint: fix error in syntax-check checking X-Git-Tag: v8.32~62 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a57402911033fb7d40cd223138163fb5b2ffe974;p=thirdparty%2Fcoreutils.git maint: fix error in syntax-check checking The previous commit introduced a bug into the following syntax-check, and thus effectively turned it off: $ make sc_prohibit_test_calls_print_ver_with_irrelevant_argument; \ echo $? prohibit_test_calls_print_ver_with_irrelevant_argument fatal: cannot change to 'grep': No such file or directory 0 * cfg.mk (sc_prohibit_test_calls_print_ver_with_irrelevant_argument): Remove changing directory, and pass $(srcdir) as argument to 'git -C'. --- diff --git a/cfg.mk b/cfg.mk index b589b40e38..2bc933c8be 100644 --- a/cfg.mk +++ b/cfg.mk @@ -635,8 +635,7 @@ sc_prohibit_test_background_without_cleanup_: # Ensure that tests call the print_ver_ function for programs which are # actually used in that test. sc_prohibit_test_calls_print_ver_with_irrelevant_argument: - @cd $(srcdir) \ - && git -C grep -w print_ver_ tests \ + @git -C $(srcdir) grep -w print_ver_ tests \ | sed 's#:print_ver_##' \ | { fail=0; \ while read file name; do \