From 7c53b2f69cb9b2969b937355de15d4243386bbe1 Mon Sep 17 00:00:00 2001 From: Brent Eagles Date: Wed, 7 Mar 2007 01:39:22 +0000 Subject: fixing bug 1971 --- cpp/install/common/components.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cpp/install/common/components.py') 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() -- cgit v1.2.3