diff options
author | Brent Eagles <brent@zeroc.com> | 2005-11-07 16:14:05 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2005-11-07 16:14:05 +0000 |
commit | db35c261855011d1a3880f6710cf5b16b875aa48 (patch) | |
tree | 0fe75e52c041adfaf0783530b9b5f51fccb954bc /cpp/makebindist.py | |
parent | now the linker flags should be alright (diff) | |
download | ice-db35c261855011d1a3880f6710cf5b16b875aa48.tar.bz2 ice-db35c261855011d1a3880f6710cf5b16b875aa48.tar.xz ice-db35c261855011d1a3880f6710cf5b16b875aa48.zip |
fix typo in string construction
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 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): |