mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 10:22:45 -04:00
forgot to protect debug output by a VERBOSE check
This commit is contained in:
parent
d3e545a949
commit
fec1586d1f
@ -1042,7 +1042,8 @@ def ChooseLib(*libs):
|
||||
if (libname in GetLibCache()):
|
||||
return libname
|
||||
if (len(libs) > 0):
|
||||
print GetColor("cyan") + "Couldn't find any of the libraries " + ", ".join(libs) + GetColor()
|
||||
if (VERBOSE):
|
||||
print GetColor("cyan") + "Couldn't find any of the libraries " + ", ".join(libs) + GetColor()
|
||||
return libs[0]
|
||||
|
||||
def SmartPkgEnable(pkg, pkgconfig = None, libs = None, incs = None, defs = None, framework = None, target_pkg = None, tool = "pkg-config"):
|
||||
|
Loading…
x
Reference in New Issue
Block a user