From: Guillem Jover Date: Sun, 18 Feb 2024 19:40:24 +0000 (+0100) Subject: build: Add support for silent rules for the libbsd.map generation X-Git-Tag: 0.12.0~15 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=154624ab459723b204d031405f4321eba83ccc36;p=thirdparty%2Flibbsd.git build: Add support for silent rules for the libbsd.map generation The new rule was introduced w/o silent rule support. Fixes: commit 19e06407eb365a2bedc9bdd29a83c1e1803e3f92 --- 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.