use the MSVC 7.1 DLLs for python versions >= 2.4, not ==

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41352 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-09-21 17:01:28 +00:00
parent 79df624ab9
commit ce2f068535
2 changed files with 2 additions and 2 deletions

View File

@@ -603,7 +603,7 @@ def get_batch_files():
runtime_template = 'Source: "%s"; DestDir: "{code:GetPythonDir}"; CopyMode: alwaysskipifsameorolder; Flags: uninsneveruninstall; Components: core'
def get_runtime_dlls(PYVER):
if PYVER == "py24":
if PYVER >= "py24":
source = [ r"distrib\msw\msvcr71.dll",
r"distrib\msw\msvcp71.dll" ]
else: