git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73603
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
import os
-import string
import subprocess
import sys
import time
sys.stderr.write("Could not find configure script at %r. Have you run autoconf?\n" % dir)
return 1
- optionsStr = string.join(options, " ") if options else ""
+ optionsStr = " ".join(options) if options else ""
command = "%s %s" % (configure_cmd, optionsStr)
print(command)
result = os.system(command)