commandStr = " ".join(command)
if verbose:
- print commandStr
+ print(commandStr)
result = os.system(commandStr)
if dir:
optionsStr = string.join(options, " ") if options else ""
command = "%s %s" % (configure_cmd, optionsStr)
- print command
+ print(command)
result = os.system(command)
#os.chdir(olddir)
return result