diff options
author | Brent Eagles <brent@zeroc.com> | 2005-10-18 11:40:22 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2005-10-18 11:40:22 +0000 |
commit | 6c67c6188eb03125c3999941ae97ee309a4d04b5 (patch) | |
tree | a2735e0560e6d381835fce43af4f994dd34700f4 /cpp/makebindist.py | |
parent | Fixed slice compilation (diff) | |
download | ice-6c67c6188eb03125c3999941ae97ee309a4d04b5.tar.bz2 ice-6c67c6188eb03125c3999941ae97ee309a4d04b5.tar.xz ice-6c67c6188eb03125c3999941ae97ee309a4d04b5.zip |
- Include IcePy library with the form IcePy.so.n, this is currently
hardcoded and needs to be driven by the computer version of Ice.
- The Python sources that are included with IcePy are no compiled.
- The IcePy.so module shared library is placed in the same directory as the
python sources so /usr/lib doesn't need to be added to PYTHONPATH any
longer.
Diffstat (limited to 'cpp/makebindist.py')
-rwxr-xr-x | cpp/makebindist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/makebindist.py b/cpp/makebindist.py index d6ae3aaf9ec..930058b00cc 100755 --- a/cpp/makebindist.py +++ b/cpp/makebindist.py @@ -365,7 +365,7 @@ def makeInstall(sources, buildDir, installDir, distro, clean, version): # # XXX- Optimizations need to be turned on for the release. # - os.system('gmake NOGAC=yes OPTIMIZE=no INSTALL_ROOT=' + installDir + ' install') + os.system('gmake NOGAC=yes OPTIMIZE=yes INSTALL_ROOT=' + installDir + ' install') # # Edit config directory contents and copy into installation target |