diff options
author | Brent Eagles <brent@zeroc.com> | 2007-03-02 12:37:54 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2007-03-02 12:37:54 +0000 |
commit | 1999a8624f9ad8ff90abfd43f2977c9fa8e51d22 (patch) | |
tree | 13adaf44350955c5cf6d30579127364e9e1770cf /cpp/install/common/makewindist.py | |
parent | added note about the windows firewall. (diff) | |
download | ice-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-x | cpp/install/common/makewindist.py | 5 |
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) |