]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/setup.py
Starting to update the tarball and rpm spec files for 2.5. Mostly
[wxWidgets.git] / wxPython / setup.py
index 0c42993d779cb83341d44dcc1f8e4ac2202661d0..645b2502e5db21d4959011650db90a828d305631 100755 (executable)
@@ -223,7 +223,10 @@ def Verify_WX_CONFIG():
         else:
             uf = ''
         ver2 = "%s.%s" % (VER_MAJOR, VER_MINOR)
-        WX_CONFIG = 'wx%s%s%s-%s-config' % (WXPORT, uf, df, ver2)
+        port = WXPORT
+        if port == "x11":
+            port = "x11univ"
+        WX_CONFIG = 'wx%s%s%s-%s-config' % (port, uf, df, ver2)
 
         searchpath = os.environ["PATH"]
         for p in searchpath.split(':'):