From 429a96c73f25197b0ca83d0baac5bde949c1c0bd Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Wed, 27 Mar 2013 04:28:25 +0000 Subject: [PATCH] Enable finding the wxWidgets folder as a subdir of the main Phoenix folder. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@73721 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- buildtools/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildtools/config.py b/buildtools/config.py index d108a4be..1109de72 100644 --- a/buildtools/config.py +++ b/buildtools/config.py @@ -642,7 +642,7 @@ def phoenixDir(): def wxDir(): WXWIN = os.environ.get('WXWIN') if not WXWIN: - for rel in ['../wxWidgets', '../wx', '..']: + for rel in ['../wxWidgets', '../wx', './wxWidgets', '..']: path = os.path.join(phoenixDir(), rel) if path and os.path.exists(path) and os.path.isdir(path): WXWIN = os.path.abspath(os.path.join(phoenixDir(), rel))