[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [60241] trunk/blender/build_files/ build_environment/install_deps.sh: Fix own stupid error in previous commit. ..

Bastien Montagne montagne29 at wanadoo.fr
Thu Sep 19 22:27:26 CEST 2013


Revision: 60241
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=60241
Author:   mont29
Date:     2013-09-19 20:27:26 +0000 (Thu, 19 Sep 2013)
Log Message:
-----------
Fix own stupid error in previous commit... :/

Modified Paths:
--------------
    trunk/blender/build_files/build_environment/install_deps.sh

Modified: trunk/blender/build_files/build_environment/install_deps.sh
===================================================================
--- trunk/blender/build_files/build_environment/install_deps.sh	2013-09-19 20:11:23 UTC (rev 60240)
+++ trunk/blender/build_files/build_environment/install_deps.sh	2013-09-19 20:27:26 UTC (rev 60241)
@@ -550,10 +550,10 @@
 # ldconfig
 run_ldconfig() {
   _lib_path="$INST/$1/lib"
-  _ldonf_path="/etc/ld.so.conf.d/$1.conf"
+  _ldconf_path="/etc/ld.so.conf.d/$1.conf"
   INFO ""
   INFO "Running ldconfig for $1..."
-  sudo sh -c "echo \"$INST/boost/lib\" > /etc/ld.so.conf.d/boost.conf"
+  sudo sh -c "echo \"$_lib_path\" > $_ldconf_path"
   sudo /sbin/ldconfig  # XXX OpenSuse does not include sbin in command path with sudo!!!
   INFO ""
 }




More information about the Bf-blender-cvs mailing list