Changeset 170
- Timestamp:
- 05/11/07 15:21:47 (2 years ago)
- Files:
-
- GtkRadiant/trunk/install.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
GtkRadiant/trunk/install.py
r150 r170 27 27 28 28 import os 29 import sys 29 30 import shutil 30 31 … … 115 116 copySvn("../msvc_redist", installRoot) 116 117 117 dbghelp = os.path.normpath(os.path.join(thisDir, "../msvc_redist/dbghelp.dll")) 118 copyFileIfExists(dbghelp, installRoot) 118 if sys.platform[:3] == "win" : 119 dbghelp = os.path.normpath(os.path.join(thisDir, "../msvc_redist/dbghelp.dll")) 120 copyFileIfExists(dbghelp, installRoot) 119 121 120 122 # create version files
