diff options
author | Brent Eagles <brent@zeroc.com> | 2005-11-21 12:07:45 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2005-11-21 12:07:45 +0000 |
commit | 87168f131d3a6bf43237b52b7937230bc013fe06 (patch) | |
tree | 8a8dbd63dacddc6ec67acdbd0e2f69884a6dc63a /cpp/install/common/makewindist.py | |
parent | Disabled VS 8 warning. (diff) | |
download | ice-87168f131d3a6bf43237b52b7937230bc013fe06.tar.bz2 ice-87168f131d3a6bf43237b52b7937230bc013fe06.tar.xz ice-87168f131d3a6bf43237b52b7937230bc013fe06.zip |
- Installer creation process no longer re-compiles Ice for Java
distribution. This step is unnecessary since everything necessary is
already built in the source code distribution.
Diffstat (limited to 'cpp/install/common/makewindist.py')
-rwxr-xr-x | cpp/install/common/makewindist.py | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/cpp/install/common/makewindist.py b/cpp/install/common/makewindist.py index f6ab0f25ac3..2a0f252eae7 100755 --- a/cpp/install/common/makewindist.py +++ b/cpp/install/common/makewindist.py @@ -54,10 +54,13 @@ def cleanIceDists(sourcesDir, sourcesVersion, installVersion): #
# Ice for Java
+ #
+ # XXX- Its very unclear why we would rebuild Java since all of
+ # the files we need here are already built.
#
- os.chdir(os.path.join(sourcesDir, "IceJ-" + sourcesVersion))
- print "Cleaning in " + os.getcwd() + "..."
- runprog("ant clean")
+ # os.chdir(os.path.join(sourcesDir, "IceJ-" + sourcesVersion))
+ # print "Cleaning in " + os.getcwd() + "..."
+ # runprog("ant clean")
#
# Ice for C#
@@ -148,11 +151,14 @@ def buildIceDists(stageDir, sourcesDir, sourcesVersion, installVersion): runprog("devenv all.sln /useenv /build Release")
#
- # Ice for Java
+ # Ice for Java
#
- os.chdir(os.path.join(sourcesDir, "IceJ-" + sourcesVersion))
- print "Building in " + os.getcwd() + "..."
- runprog("ant")
+ # XXX- Its very unclear why we would rebuild Java since all of
+ # the files we need here are already built.
+ #
+ # os.chdir(os.path.join(sourcesDir, "IceJ-" + sourcesVersion))
+ # print "Building in " + os.getcwd() + "..."
+ # runprog("ant")
#
# Ice for C#
|