summaryrefslogtreecommitdiff
path: root/cpp/makebindist.py
diff options
context:
space:
mode:
authorBrent Eagles <brent@zeroc.com>2006-06-24 22:18:50 +0000
committerBrent Eagles <brent@zeroc.com>2006-06-24 22:18:50 +0000
commit1d2a5fd097b6798cd1dc9a79e7cb887cf1589ced (patch)
tree4b64435d5230f7829c99d516e41997a0c3782921 /cpp/makebindist.py
parentOpenSSL acknowledgement (diff)
downloadice-1d2a5fd097b6798cd1dc9a79e7cb887cf1589ced.tar.bz2
ice-1d2a5fd097b6798cd1dc9a79e7cb887cf1589ced.tar.xz
ice-1d2a5fd097b6798cd1dc9a79e7cb887cf1589ced.zip
Turn optimizations on
Diffstat (limited to 'cpp/makebindist.py')
-rwxr-xr-xcpp/makebindist.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/makebindist.py b/cpp/makebindist.py
index ba56ed7f9e1..b96217c42b3 100755
--- a/cpp/makebindist.py
+++ b/cpp/makebindist.py
@@ -510,8 +510,8 @@ def makeInstall(sources, buildDir, installDir, distro, clean, version):
# XXX- Optimizations need to be turned on for the release.
#
try:
- runprog('gmake NOGAC=yes OPTIMIZE=no INSTALL_ROOT=/opt/Ice-%s' % version)
- runprog('gmake NOGAC=yes OPTIMIZE=no INSTALL_ROOT=%s install' % installDir)
+ runprog('gmake NOGAC=yes OPTIMIZE=yes INSTALL_ROOT=/opt/Ice-%s' % version)
+ runprog('gmake NOGAC=yes OPTIMIZE=yes INSTALL_ROOT=%s install' % installDir)
except ExtProgramError:
print "gmake failed for makeInstall(%s, %s, %s, %s, %s, %s)" % (sources, buildDir, installDir, distro, str(clean), version)
raise