Don't print when imported

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@18657 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2003-01-10 04:22:11 +00:00
parent 64a948febc
commit 849be528fe

View File

@@ -214,12 +214,12 @@ def Verify_WX_CONFIG():
fp = os.path.join(p, WX_CONFIG)
if os.path.exists(fp) and os.access(fp, os.X_OK):
# success
print "Found wx-config: " + fp
msg("Found wx-config: " + fp)
WX_CONFIG = fp
break
else:
print "WX_CONFIG not specified and %s not found on $PATH " \
"defaulting to \"wx-config\"" % WX_CONFIG
msg("WX_CONFIG not specified and %s not found on $PATH "
"defaulting to \"wx-config\"" % WX_CONFIG)
WX_CONFIG = 'wx-config'
#----------------------------------------------------------------------
@@ -388,7 +388,6 @@ elif os.name == 'posix':
GENDIR = 'gtk' # no code differences so use the same generated sources
portcfg = os.popen('pkg-config gtk+-2.0 --cflags', 'r').read()[:-1]
BUILD_BASE = BUILD_BASE + '-' + WXPORT
print "got here..."
elif WXPORT == 'x11':
WXPLAT = '__WXX11__'
portcfg = ''