diff options
author | Brent Eagles <brent@zeroc.com> | 2007-03-07 01:39:22 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2007-03-07 01:39:22 +0000 |
commit | 7c53b2f69cb9b2969b937355de15d4243386bbe1 (patch) | |
tree | 73842eef63fac50d299f5805b4839ea30418e712 /cpp/install/common | |
parent | Bug 1980 (diff) | |
download | ice-7c53b2f69cb9b2969b937355de15d4243386bbe1.tar.bz2 ice-7c53b2f69cb9b2969b937355de15d4243386bbe1.tar.xz ice-7c53b2f69cb9b2969b937355de15d4243386bbe1.zip |
fixing bug 1971
Diffstat (limited to 'cpp/install/common')
-rwxr-xr-x | cpp/install/common/components.py | 2 |
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() |