summaryrefslogtreecommitdiff
path: root/cpp/install/common/makewindist.py
diff options
context:
space:
mode:
authorBrent Eagles <brent@zeroc.com>2007-03-02 12:37:54 +0000
committerBrent Eagles <brent@zeroc.com>2007-03-02 12:37:54 +0000
commit1999a8624f9ad8ff90abfd43f2977c9fa8e51d22 (patch)
tree13adaf44350955c5cf6d30579127364e9e1770cf /cpp/install/common/makewindist.py
parentadded note about the windows firewall. (diff)
downloadice-1999a8624f9ad8ff90abfd43f2977c9fa8e51d22.tar.bz2
ice-1999a8624f9ad8ff90abfd43f2977c9fa8e51d22.tar.xz
ice-1999a8624f9ad8ff90abfd43f2977c9fa8e51d22.zip
updated install projects for 3.2.0
Diffstat (limited to 'cpp/install/common/makewindist.py')
-rwxr-xr-xcpp/install/common/makewindist.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/install/common/makewindist.py b/cpp/install/common/makewindist.py
index 61f92683258..29a8574afee 100755
--- a/cpp/install/common/makewindist.py
+++ b/cpp/install/common/makewindist.py
@@ -558,7 +558,10 @@ def buildInstallers(startDir, stageDir, sourcesVersion, installVersion, installe
os.chdir(startDir)
for project, release in installers:
runprog(os.environ['INSTALLSHIELD_HOME'] + "\IsCmdBld -x -w -c COMP -a ZEROC -p " + project + ".ism -r " + release)
- msi = project + "-" + sourcesVersion + "-" + installVersion + ".msi"
+ if project == "Ice":
+ msi = project + "-" + sourcesVersion + "-" + installVersion + ".msi"
+ else:
+ msi = "Ice-" + sourcesVersion + "-" + project + "-" + installVersion + ".msi"
msiPath = os.path.join(os.getcwd(), project, "ZEROC", release, "DiskImages/DISK1", msi)
shutil.copy(msiPath, stageDir)