From ac7ddebf29692acb7edb25af70e9bdfcede69dd6 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Mon, 16 Sep 2024 14:44:27 -0400 Subject: [PATCH] Run ldconfig after installing libraries as needed. --- Makefile | 3 +++ 1 file changed, 3 insertions(+) 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 # -- 2.47.2