Lines Matching refs:debug
40 def FindComponentPaths(path, debug=None):
45 if debug:
46 print >>debug, "searching %s for component directories" % path
53 if debug:
54 print >>debug, "found %s" % dirpath
62 def __init__(self, path=None, debug=None):
63 self.debug = debug
89 if self.debug:
90 print >>self.debug, "Executing 'gmake %s' in %s" % (targets, path)
99 if self.debug:
102 print >>self.debug, "exit: %d, %s" % (proc.returncode, proc.stderr.read())
126 debug=None
135 [ "debug", "workspace=", "components=",
152 elif opt in [ "-d", "--debug" ]:
153 debug = sys.stdout
157 component_paths = FindComponentPaths(workspace, debug)
173 components[path] = BassComponent(path, debug)