]> git.saurik.com Git - wxWidgets.git/commitdiff
Create the wxPython dir (for the reverse renamers) if it doesn't exist
authorRobin Dunn <robin@alldunn.com>
Wed, 23 Jun 2004 17:39:31 +0000 (17:39 +0000)
committerRobin Dunn <robin@alldunn.com>
Wed, 23 Jun 2004 17:39:31 +0000 (17:39 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27976 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/config.py

index 8b8d4ce35841e34a938f42dca24750058d0e43bf..04a6739ad4926042af1765f1eebdf5aaeea1cc32 100644 (file)
@@ -96,6 +96,9 @@ class BuildRenamers:
 
         assert FOUND_LIBXML2, "The libxml2 module is required to use the BuildRenamers functionality."
             
 
         assert FOUND_LIBXML2, "The libxml2 module is required to use the BuildRenamers functionality."
             
+        if not os.path.exists(wxPythonDir):
+            os.mkdir(wxPythonDir)
+
         swigDest = os.path.join(destdir, "_"+modname+"_rename.i")
         pyDest = os.path.join(wxPythonDir, modname + '.py')
     
         swigDest = os.path.join(destdir, "_"+modname+"_rename.i")
         pyDest = os.path.join(wxPythonDir, modname + '.py')