diff options
author | Brent Eagles <brent@zeroc.com> | 2007-02-22 18:17:49 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2007-02-22 18:17:49 +0000 |
commit | 2553ec113576ec44da1c1cd5797faf1cd5f1a43e (patch) | |
tree | 8855e65e4b3986cdecc2f838b32af85a86a9a4d6 /cpp/install/common/makewindist.py | |
parent | adding missing Slice files (diff) | |
download | ice-2553ec113576ec44da1c1cd5797faf1cd5f1a43e.tar.bz2 ice-2553ec113576ec44da1c1cd5797faf1cd5f1a43e.tar.xz ice-2553ec113576ec44da1c1cd5797faf1cd5f1a43e.zip |
fixing filelists
Diffstat (limited to 'cpp/install/common/makewindist.py')
-rwxr-xr-x | cpp/install/common/makewindist.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/install/common/makewindist.py b/cpp/install/common/makewindist.py index 4b813de5255..61f92683258 100755 --- a/cpp/install/common/makewindist.py +++ b/cpp/install/common/makewindist.py @@ -262,8 +262,8 @@ def buildIceDists(stageDir, sourcesDir, sourcesVersion, installVersion): # os.chdir(os.path.join(sourcesDir, "debug", "IceVB-" + sourcesVersion)) print "Building in " + os.getcwd() + "..." - setOptimize(os.path.join(os.getcwd(), "config", "Make.rules.mak"), False) - f = fileinput.input(os.path.join(os.getcwd(), "config", "Make.rules.mak"), True) + setOptimize(os.path.join(os.getcwd(), "config", "Make.rules.mak.vb"), False) + f = fileinput.input(os.path.join(os.getcwd(), "config", "Make.rules.mak.vb"), True) for l in f: i = l.find("icecs") if i <> -1: @@ -289,8 +289,8 @@ def buildIceDists(stageDir, sourcesDir, sourcesVersion, installVersion): # os.chdir(os.path.join(sourcesDir, "release", "IceVB-" + sourcesVersion)) print "Building in " + os.getcwd() + "..." - setOptimize(os.path.join(os.getcwd(), "config", "Make.rules.mak"), True) - f = fileinput.input(os.path.join(os.getcwd(), "config", "Make.rules.mak"), True) + setOptimize(os.path.join(os.getcwd(), "config", "Make.rules.mak.vb"), True) + f = fileinput.input(os.path.join(os.getcwd(), "config", "Make.rules.mak.vb"), True) for l in f: i = l.find("icecs") if i <> -1: |