Commit 693d719f authored by Dustin Navea's avatar Dustin Navea Committed by Alexandre Julliard

Always run ldconfig even if we don't change ld.so.conf.

parent 71a8a74b
...@@ -292,14 +292,19 @@ then { ...@@ -292,14 +292,19 @@ then {
# if the user doesn't have $libdir in their ld.so.conf add this # if the user doesn't have $libdir in their ld.so.conf add this
# to our sucommand string # to our sucommand string
if [ -f /etc/ld.so.conf ] && ! grep -qs "$libdir" /etc/ld.so.conf if [ -f /etc/ld.so.conf ]
then
if [ ! grep -qs "$libdir" /etc/ld.so.conf ]
then { then {
echo echo
echo "$libdir doesn't exist in your /etc/ld.so.conf, it will be added" echo "$libdir doesn't exist in your /etc/ld.so.conf, it will be added"
echo "when we perform the install..." echo "when we perform the install..."
sucommand="$sucommand;echo $libdir>>/etc/ld.so.conf;$ac_cv_path_LDCONFIG" sucommand="$sucommand;echo $libdir>>/etc/ld.so.conf"
} }
fi fi
# run ldconfig always just in case some updated files dont get linked
sucommand="$sucommand;$ac_cv_path_LDCONFIG"
fi
echo echo
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment