Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2013-11-28 17:27:56 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-11-28 17:46:23 +0400
commit764204baf2970b49863b915191ceaf090d44e49e (patch)
tree76454aa937c6eb7403f3865d90672c56b558bd2d /build_files
parentde6c1c9287849a6d3688ac4d67c8cc21f0c4cd31 (diff)
Remove debug prints from SCons' python module
Seems to be left by accident in rB9a79e03752509997e99094763f9183e6e5ce3637 If not, please do prints more verbose :)
Diffstat (limited to 'build_files')
-rw-r--r--build_files/scons/config/Modules/FindPython.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/build_files/scons/config/Modules/FindPython.py b/build_files/scons/config/Modules/FindPython.py
index 03e15349da5..03c9d5487d0 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