From: Alexander Traud Date: Wed, 17 Jan 2018 14:17:38 +0000 (+0100) Subject: BuildSystem: Invoke ldconfig with previous path. X-Git-Tag: 16.0.0-rc1~338^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6b6b3ffa5b9aafc1183cf7ffd121ac50aaad07db;p=thirdparty%2Fasterisk.git BuildSystem: Invoke ldconfig with previous path. On OpenBSD, gmake uninstall{-all} registered only libraries from /usr/lib and lost those from /usr/local/lib. Instead, invoke ldconfig on a path. ASTERISK-27595 Change-Id: I4aa2c0b5e07119d1a556f8ff6349eaf09e986888 --- diff --git a/Makefile b/Makefile index f116e2dd9b..6b8f81fade 100644 --- a/Makefile +++ b/Makefile @@ -972,7 +972,7 @@ ifeq ($(HAVE_DAHDI),1) endif $(MAKE) -C sounds uninstall ifneq ($(LDCONFIG),) - $(LDCONFIG) || : + $(LDCONFIG) "$(ASTLIBDIR)/" || : endif uninstall: _uninstall