X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/906c935a80b10d53cecf57f71ab5f3f4f1d529ec..119e862ca9898d238c8d040718fc0f062dd43a16:/build/tools/builder.py diff --git a/build/tools/builder.py b/build/tools/builder.py index 484e274f57..a61ca3d2b2 100755 --- a/build/tools/builder.py +++ b/build/tools/builder.py @@ -18,7 +18,7 @@ def runInDir(command, dir=None, verbose=True): commandStr = " ".join(command) if verbose: - print commandStr + print(commandStr) result = os.system(commandStr) if dir: @@ -181,7 +181,7 @@ class AutoconfBuilder(GNUMakeBuilder): 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