summaryrefslogtreecommitdiff
path: root/cpp/install/common
diff options
context:
space:
mode:
authorBrent Eagles <brent@zeroc.com>2007-03-07 01:39:22 +0000
committerBrent Eagles <brent@zeroc.com>2007-03-07 01:39:22 +0000
commit7c53b2f69cb9b2969b937355de15d4243386bbe1 (patch)
tree73842eef63fac50d299f5805b4839ea30418e712 /cpp/install/common
parentBug 1980 (diff)
downloadice-7c53b2f69cb9b2969b937355de15d4243386bbe1.tar.bz2
ice-7c53b2f69cb9b2969b937355de15d4243386bbe1.tar.xz
ice-7c53b2f69cb9b2969b937355de15d4243386bbe1.zip
fixing bug 1971
Diffstat (limited to 'cpp/install/common')
-rwxr-xr-xcpp/install/common/components.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/install/common/components.py b/cpp/install/common/components.py
index d9962bc688a..58a595f761c 100755
--- a/cpp/install/common/components.py
+++ b/cpp/install/common/components.py
@@ -60,6 +60,7 @@ def fixVersion(file, argsHash):
return
version = argsHash['version']
+ libversion = argsHash['dllversion']
origfile = file + ".orig"
os.rename(file, origfile)
@@ -67,6 +68,7 @@ def fixVersion(file, argsHash):
newFile = open(file, "w")
line = oldFile.read();
line = re.sub("@ver@", version, line)
+ line = re.sub("@libver@", libversion, line)
newFile.write(line)
newFile.close()
oldFile.close()