From: Robin Dunn Date: Wed, 6 Oct 2004 21:54:49 +0000 (+0000) Subject: Install tweaks X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b6536d60cfe3fe995b30ad2b0e2edf978cadc17a Install tweaks git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29688 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/config.py b/wxPython/config.py index 069da05942..2e0d92a868 100644 --- a/wxPython/config.py +++ b/wxPython/config.py @@ -134,9 +134,11 @@ INSTALL_MULTIVERSION = 1 # Install the packages such that multiple versions FLAVOUR = "" # Optional flavour string to be appended to VERSION # in MULTIVERSION installs - -INSTALL_WXRC = 0 # Should the Python version of wxrc be installed? +EP_ADD_OPTS = 0 # When doing MULTIVERSION installs the wx port and + # ansi/unicode settings can optionally be added to the + # subdir path used in site-packages + WX_CONFIG = None # Usually you shouldn't need to touch this, but you can set # it to pass an alternate version of wx-config or alternate # flags, eg. as required by the .deb in-tree build. By @@ -234,7 +236,7 @@ for flag in ['BUILD_GLCANVAS', 'BUILD_OGL', 'BUILD_STC', 'BUILD_GIZMOS', 'BUILD_DLLWIDGET', 'BUILD_IEWIN', 'BUILD_ACTIVEX', 'CORE_ONLY', 'PREP_ONLY', 'USE_SWIG', 'UNICODE', 'UNDEF_NDEBUG', 'NO_SCRIPTS', 'NO_HEADERS', 'BUILD_RENAMERS', - 'FULL_DOCS', 'INSTALL_MULTIVERSION', 'INSTALL_WXRC', + 'FULL_DOCS', 'INSTALL_MULTIVERSION', 'EP_ADD_OPTS', 'FINAL', 'HYBRID', ]: for x in range(len(sys.argv)): if sys.argv[x].find(flag) == 0: @@ -285,6 +287,8 @@ def Verify_WX_CONFIG(): msg("Found wx-config: " + fp) msg(" Using flags: " + flags) WX_CONFIG = fp + flags + if hasattr(sys, 'setup_is_main') and not sys.setup_is_main: + WX_CONFIG += " 2>/dev/null " break else: msg("ERROR: WX_CONFIG not specified and wx-config not found on the $PATH") diff --git a/wxPython/setup.py b/wxPython/setup.py index f8aabe26d7..832c8b83ca 100755 --- a/wxPython/setup.py +++ b/wxPython/setup.py @@ -655,10 +655,9 @@ else: opj('scripts/pyshell'), opj('scripts/pywrap'), opj('scripts/pywrap'), + opj('scripts/pywxrc'), opj('scripts/xrced'), ] - if INSTALL_WXRC: - SCRIPTS += [opj('scripts/wxrc')] @@ -681,7 +680,7 @@ else: if INSTALL_MULTIVERSION: - EXTRA_PATH = getExtraPath() + EXTRA_PATH = getExtraPath(addOpts=EP_ADD_OPTS) open("src/wx.pth", "w").write(EXTRA_PATH) CLEANUP.append("src/wx.pth") else: