diff options
author | Brent Eagles <brent@zeroc.com> | 2007-01-12 20:41:05 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2007-01-12 20:41:05 +0000 |
commit | 8e32df4abd71d0d0b0eb03faa755410614a79af1 (patch) | |
tree | ef40eb3186069ce423e0cb07901109f832e26728 /cpp/install/common/makewindist.py | |
parent | Only support VC60 (diff) | |
download | ice-8e32df4abd71d0d0b0eb03faa755410614a79af1.tar.bz2 ice-8e32df4abd71d0d0b0eb03faa755410614a79af1.tar.xz ice-8e32df4abd71d0d0b0eb03faa755410614a79af1.zip |
adding ice for ruby to VC 6.0 installer, removing .net stuff from VS 2003
installer.
Diffstat (limited to 'cpp/install/common/makewindist.py')
-rwxr-xr-x | cpp/install/common/makewindist.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/cpp/install/common/makewindist.py b/cpp/install/common/makewindist.py index a418efd7f95..c37757baa7d 100755 --- a/cpp/install/common/makewindist.py +++ b/cpp/install/common/makewindist.py @@ -22,7 +22,8 @@ STLPortVer = '4.6.2' ExpatVer = '2.0.0' DBVer = '4.5.20' -DistPrefixes = ["Ice-%s", "IceJ-%s-java2", "IceJ-%s-java5", "IceCS-%s", "IcePy-%s", "IcePHP-%s", "IceVB-%s"] +DistPrefixes = ["Ice-%s", "IceJ-%s-java2", "IceJ-%s-java5", "IceCS-%s", "IcePy-%s", "IcePHP-%s", "IceVB-%s", + "IceRuby-%s"] class DistEnvironmentError: def __init__(self, msg = None): @@ -360,6 +361,10 @@ def buildIceDists(stageDir, sourcesDir, sourcesVersion, installVersion): print "Building in " + os.getcwd() + "..." setOptimize(os.path.join(os.getcwd(), "config", "Make.rules.mak"), True) runprog("nmake /f Makefile.mak") + os.chdir(os.path.join(sourcesDir, "release", "IceRuby-%s" % sourcesVersion)) + setOptimize(os.path.join(os.getcwd(), "config", "Make.rules.mak"), True) + print "Building in " + os.getcwd() + "..." + runprog("nmake /f Makefile.mak") def list2english(l): if len(l) == 1: |