From 5b340d87805e71071395519f7b8221fa6d7be6ef Mon Sep 17 00:00:00 2001 From: Collin Funk Date: Sun, 12 Jan 2025 22:28:44 -0800 Subject: [PATCH] crc: Respect Automake's silent-rules. * modules/crc (Makefile.am): Add the $(AM_V_GEN) prefix before the command. --- ChangeLog | 6 ++++++ modules/crc | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 9b7991df8d..64da89068c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2025-01-12 Collin Funk + + crc: Respect Automake's silent-rules. + * modules/crc (Makefile.am): Add the $(AM_V_GEN) prefix before the + command. + 2025-01-12 Pádraig Brady progname: also set program_invocation_short_name diff --git a/modules/crc b/modules/crc index a50fb2051f..9950b8b0b4 100644 --- a/modules/crc +++ b/modules/crc @@ -28,7 +28,7 @@ lib_SOURCES += crc.c # $(AM_LDFLAGS). And do the compilation in a temporary directory, where # gnulib-generated stdio.h and stdlib.h files are not visible. $(srcdir)/crc-sliceby8.h: $(srcdir)/crc-generate-table.c - if test -n '$(BUILD_CC)'; then \ + $(AM_V_GEN)if test -n '$(BUILD_CC)'; then \ $(MKDIR_P) '%reldir%/crc-tmp' \ && abs_srcdir=`cd $(srcdir)/. && pwd` \ && (cd '%reldir%/crc-tmp' \ -- 2.39.5