Remove debug prints from SCons' python module

Seems to be left by accident in rB9a79e03752509997e99094763f9183e6e5ce3637

If not, please do prints more verbose :)
This commit is contained in:
Sergey Sharybin 2013-11-28 19:27:56 +06:00
parent de6c1c9287
commit 764204baf2
1 changed files with 0 additions and 2 deletions

View File

@ -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