# HG changeset patch # User nenolod # Date 1139082421 28800 # Node ID 502b4614512169f24a866f4c243c8005df994657 # Parent 31939ccaff8db8e2d6c806f9e45d527b1d2e891a [svn] Run ldconfig as an install-posthook operation, some systems need it. diff -r 31939ccaff8d -r 502b46145121 Makefile.in --- a/Makefile.in Sat Feb 04 11:44:06 2006 -0800 +++ b/Makefile.in Sat Feb 04 11:47:01 2006 -0800 @@ -2,3 +2,10 @@ include mk/objective.mk SUBDIRS = Plugins libaudacious audacious po icons skin intl + +install-posthook: + @if test `whoami` = 'root'; then \ + echo "[running ldconfig to update system library cache]"; \ + ldconfig; \ + echo "[system library cache updated]"; \ + fi