From: Eric Botcazou Date: Sun, 26 Oct 2025 09:03:10 +0000 (+0100) Subject: Cobol: Suppress recipe echoing in Makefile X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=970c442dfe2ff28f8a7c27566d07eb62e1c8691f;p=thirdparty%2Fgcc.git Cobol: Suppress recipe echoing in Makefile gcc/cobol/ * Make-lang.in ($(srcdir)/cobol/token_names.h): Silence recipe. --- diff --git a/gcc/cobol/Make-lang.in b/gcc/cobol/Make-lang.in index 1f9995febf1..ed6b588fe72 100644 --- a/gcc/cobol/Make-lang.in +++ b/gcc/cobol/Make-lang.in @@ -245,7 +245,7 @@ cobol/scan.o: cobol/scan.cc \ # Update token names if the generator script is installed # (by a developer) and there's been a change. $(srcdir)/cobol/token_names.h: cobol/parse.cc - if [ -f $@.gen ]; then \ + @if [ -f $@.gen ]; then \ $@.gen $(subst .cc,.h,$^) \ | diff -u $@ - \ | patch -t --set-time $@ ; \