[Commits] (morgen) We do need msvcp dlls
commits at osafoundation.org
commits at osafoundation.org
Mon Mar 8 16:27:10 PST 2004
Commit by: morgen
Modified files:
osaf/chandler/Chandler/__hardhat__.py 1.163 1.164
osaf/chandler/Chandler/distrib/win/msvcp71.dll None 1.1
osaf/chandler/Chandler/distrib/win/msvcp71d.dll None 1.1
Log message:
We do need msvcp dlls
ViewCVS links:
http://cvs.osafoundation.org/index.cgi/osaf/chandler/Chandler/__hardhat__.py.diff?r1=text&tr1=1.163&r2=text&tr2=1.164
http://cvs.osafoundation.org/index.cgi/osaf/chandler/Chandler/distrib/win/msvcp71.dll?rev=1.1&content-type=text/vnd.viewcvs-markup
http://cvs.osafoundation.org/index.cgi/osaf/chandler/Chandler/distrib/win/msvcp71d.dll?rev=1.1&content-type=text/vnd.viewcvs-markup
Index: osaf/chandler/Chandler/__hardhat__.py
diff -u osaf/chandler/Chandler/__hardhat__.py:1.163 osaf/chandler/Chandler/__hardhat__.py:1.164
--- osaf/chandler/Chandler/__hardhat__.py:1.163 Mon Mar 8 15:53:38 2004
+++ osaf/chandler/Chandler/__hardhat__.py Mon Mar 8 16:26:38 2004
@@ -115,6 +115,10 @@
os.chdir("win")
if buildenv['version'] == 'release':
hardhatlib.log(buildenv, hardhatlib.HARDHAT_MESSAGE,
+ info['name'], "Copying MSVCP71.DLL to release/bin")
+ hardhatlib.copyFile("msvcp71.dll", buildenv['root'] + \
+ os.sep + "release" + os.sep + "bin")
+ hardhatlib.log(buildenv, hardhatlib.HARDHAT_MESSAGE,
info['name'], "Copying MSVCR71.DLL to release/bin")
hardhatlib.copyFile("msvcr71.dll", buildenv['root'] + \
os.sep + "release" + os.sep + "bin")
@@ -123,6 +127,10 @@
hardhatlib.copyFile("RunRelease.bat", buildenv['root'] + \
os.sep + "release")
if buildenv['version'] == 'debug':
+ hardhatlib.log(buildenv, hardhatlib.HARDHAT_MESSAGE,
+ info['name'], "Copying MSVCP71D.DLL to debug/bin")
+ hardhatlib.copyFile("msvcp71d.dll", buildenv['root'] + \
+ os.sep + "debug" + os.sep + "bin")
hardhatlib.log(buildenv, hardhatlib.HARDHAT_MESSAGE,
info['name'], "Copying MSVCR71D.DLL to debug/bin")
hardhatlib.copyFile("msvcr71d.dll", buildenv['root'] + \
More information about the Commits
mailing list