From: Collin Funk Date: Mon, 13 Jan 2025 06:28:44 +0000 (-0800) Subject: crc: Respect Automake's silent-rules. X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=539fa8c1d705c63d4e034def4719b0977d8a72a2;p=gnulib.git crc: Respect Automake's silent-rules. * modules/crc (Makefile.am): Add the $(AM_V_GEN) prefix before the command. --- diff --git a/ChangeLog b/ChangeLog index b52a2799b9..b884aa202c 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' \