[Bf-blender-cvs] [764204b] master: Remove debug prints from SCons' python module

Sergey Sharybin noreply at git.blender.org
Thu Nov 28 14:46:45 CET 2013


Commit: 764204baf2970b49863b915191ceaf090d44e49e
Author: Sergey Sharybin
Date:   Thu Nov 28 19:27:56 2013 +0600
http://developer.blender.org/rB764204baf2970b49863b915191ceaf090d44e49e

Remove debug prints from SCons' python module

Seems to be left by accident in rB9a79e03752509997e99094763f9183e6e5ce3637

If not, please do prints more verbose :)

===================================================================

M	build_files/scons/config/Modules/FindPython.py

===================================================================

diff --git a/build_files/scons/config/Modules/FindPython.py b/build_files/scons/config/Modules/FindPython.py
index 03e1534..03c9d54 100644
--- a/build_files/scons/config/Modules/FindPython.py
+++ b/build_files/scons/config/Modules/FindPython.py
@@ -37,8 +37,6 @@ def FindPython():
     _libpath_arch = os.path.join(python, "lib", _arch)  # No lib64 stuff with recent deb-like distro afaik...
     _libs = ["libpython" + version + abi_flags + ext for ext in (".so", ".a")]
     for l in _libs:
-        print os.path.join(libpath, l), os.path.exists(os.path.join(libpath, l))
-        print os.path.join(_libpath_arch, l), os.path.exists(os.path.join(_libpath_arch, l))
         if not os.path.exists(os.path.join(libpath, l)) and os.path.exists(os.path.join(_libpath_arch, l)):
             libpath_arch = os.path.join(libpath, _arch)
             break




More information about the Bf-blender-cvs mailing list