Fixed dbghelp.dll issue on Linux, copy is now OS-dependant

git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@170 8a3a26a2-13c4-0310-b231-cf6edde360e5
This commit is contained in:
namespace 2007-05-11 20:21:47 +00:00
parent c9def52b27
commit 83f709aa55
1 changed files with 4 additions and 2 deletions

View File

@ -26,6 +26,7 @@ Copies files from various locations:
"""
import os
import sys
import shutil
def assertMessage(condition, message):
@ -114,6 +115,7 @@ copyFileIfExists(libmhash, installRoot)
copySvn("../msvc_redist", installRoot)
if sys.platform[:3] == "win" :
dbghelp = os.path.normpath(os.path.join(thisDir, "../msvc_redist/dbghelp.dll"))
copyFileIfExists(dbghelp, installRoot)