[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [43993] trunk/blender/build_files/scons/ config/Modules/FindPython.py: Fix typo in previous commit

Sergey Sharybin sergey.vfx at gmail.com
Wed Feb 8 18:22:49 CET 2012


Revision: 43993
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=43993
Author:   nazgul
Date:     2012-02-08 17:22:37 +0000 (Wed, 08 Feb 2012)
Log Message:
-----------
Fix typo in previous commit

Modified Paths:
--------------
    trunk/blender/build_files/scons/config/Modules/FindPython.py

Modified: trunk/blender/build_files/scons/config/Modules/FindPython.py
===================================================================
--- trunk/blender/build_files/scons/config/Modules/FindPython.py	2012-02-08 17:17:19 UTC (rev 43992)
+++ trunk/blender/build_files/scons/config/Modules/FindPython.py	2012-02-08 17:22:37 UTC (rev 43993)
@@ -16,7 +16,7 @@
             break
 
     # Determine whether python is in /usr/lib or /usr/lib64
-    lib32 = os.path.join(python, "lib64", "python" + version, "sysconfig.py")
+    lib32 = os.path.join(python, "lib", "python" + version, "sysconfig.py")
     lib64 = os.path.join(python, "lib64", "python" + version, "sysconfig.py")
     if os.path.exists(lib32):
         libpath = "${BF_PYTHON}/lib"




More information about the Bf-blender-cvs mailing list