From 970c442dfe2ff28f8a7c27566d07eb62e1c8691f Mon Sep 17 00:00:00 2001 From: Eric Botcazou Date: Sun, 26 Oct 2025 10:03:10 +0100 Subject: [PATCH] Cobol: Suppress recipe echoing in Makefile gcc/cobol/ * Make-lang.in ($(srcdir)/cobol/token_names.h): Silence recipe. --- gcc/cobol/Make-lang.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 $@ ; \ -- 2.47.3