]> git.saurik.com Git - wxWidgets.git/commitdiff
don't use string module
authorRobin Dunn <robin@alldunn.com>
Tue, 5 Mar 2013 06:50:28 +0000 (06:50 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 5 Mar 2013 06:50:28 +0000 (06:50 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73603 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

build/tools/builder.py

index ce146abe0b6f4dd05c7cb688c5babae490fa359d..635c5ae46bdf64ef3cd8fdcc85b62ae6246a2a31 100755 (executable)
@@ -1,5 +1,4 @@
 import os
-import string
 import subprocess
 import sys
 import time
@@ -179,7 +178,7 @@ class AutoconfBuilder(GNUMakeBuilder):
             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)