From: Michael R Sweet Date: Mon, 16 Sep 2024 18:44:27 +0000 (-0400) Subject: Run ldconfig after installing libraries as needed. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ac7ddebf29692acb7edb25af70e9bdfcede69dd6;p=thirdparty%2Fcups.git Run ldconfig after installing libraries as needed. --- diff --git a/Makefile b/Makefile index d928b21cb6..b585d8b724 100644 --- a/Makefile +++ b/Makefile @@ -215,6 +215,9 @@ install-libs: libs echo Installing libraries in $$dir... ;\ (cd $$dir; $(MAKE) $(MFLAGS) install-libs) || exit 1;\ done + if test -x /usr/sbin/ldconfig; then \ + /usr/sbin/ldconfig; \ + fi #