Lines Matching refs:debug
38 def FindComponentPaths(path, debug=None):
43 if debug:
44 print >>debug, "searching %s for component directories" % path
51 if debug:
52 print >>debug, "found %s" % dirpath
60 def __init__(self, path=None, debug=None):
61 self.debug = debug
87 if self.debug:
88 print >>self.debug, "Executing 'gmake %s' in %s" % (targets, path)
97 if self.debug:
100 print >>self.debug, "exit: %d, %s" % (proc.returncode, proc.stderr.read())
124 debug=None
133 [ "debug", "workspace=", "components=",
150 elif opt in [ "-d", "--debug" ]:
151 debug = sys.stdout
155 component_paths = FindComponentPaths(workspace, debug)
171 components[path] = BassComponent(path, debug)