From 154624ab459723b204d031405f4321eba83ccc36 Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Sun, 18 Feb 2024 20:40:24 +0100 Subject: [PATCH] build: Add support for silent rules for the libbsd.map generation The new rule was introduced w/o silent rule support. Fixes: commit 19e06407eb365a2bedc9bdd29a83c1e1803e3f92 --- src/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile.am b/src/Makefile.am index 1877ad6..f0e770e 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -216,7 +216,7 @@ libbsd_ctor_a_SOURCES = \ # Generate the library map file with the pre-processor to selectively include # symbols depending on the host system, otherwise some linkers might fail. libbsd.map: libbsd.map.in - $(CPP) $(AM_CPPFLAGS) $(CPPFLAGS) -P - <$(srcdir)/libbsd.map.in >$@ + $(AM_V_GEN) $(CPP) $(AM_CPPFLAGS) $(CPPFLAGS) -P - <$(srcdir)/libbsd.map.in >$@ # Generate a simple libtool symbol export list to be used as a fallback if # there is no version script support.