summaryrefslogtreecommitdiff
path: root/cpp/makebindist.py
diff options
context:
space:
mode:
authorBrent Eagles <brent@zeroc.com>2005-11-07 16:14:05 +0000
committerBrent Eagles <brent@zeroc.com>2005-11-07 16:14:05 +0000
commitdb35c261855011d1a3880f6710cf5b16b875aa48 (patch)
tree0fe75e52c041adfaf0783530b9b5f51fccb954bc /cpp/makebindist.py
parentnow the linker flags should be alright (diff)
downloadice-db35c261855011d1a3880f6710cf5b16b875aa48.tar.bz2
ice-db35c261855011d1a3880f6710cf5b16b875aa48.tar.xz
ice-db35c261855011d1a3880f6710cf5b16b875aa48.zip
fix typo in string construction
Diffstat (limited to 'cpp/makebindist.py')
-rwxr-xr-xcpp/makebindist.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/makebindist.py b/cpp/makebindist.py
index c0e1eb7d307..fc2e18d77c9 100755
--- a/cpp/makebindist.py
+++ b/cpp/makebindist.py
@@ -390,7 +390,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=yes INSTALL_ROOT=/opt/Ice-%s' % version)
- os.system('gmake NOGAC=yes OPTIMIZE=yes INSTALL_ROOT=%s install' + installDir)
+ os.system('gmake NOGAC=yes OPTIMIZE=yes INSTALL_ROOT=%s install' % installDir)
os.chdir(cwd)
def shlibExtensions(versionString, versionInt):