diff options
author | Michi Henning <michi@zeroc.com> | 2005-12-14 01:43:56 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2005-12-14 01:43:56 +0000 |
commit | 5b4ae8c688ff9c79868df58e933e9cb3a09a7de8 (patch) | |
tree | 88051e60a09c73ff6b9b7be3ab060e236a96f885 /cpp/fixVersion.py | |
parent | Fix for bug #647 (diff) | |
download | ice-5b4ae8c688ff9c79868df58e933e9cb3a09a7de8.tar.bz2 ice-5b4ae8c688ff9c79868df58e933e9cb3a09a7de8.tar.xz ice-5b4ae8c688ff9c79868df58e933e9cb3a09a7de8.zip |
Added code to update version number in icecs .pc files.
Diffstat (limited to 'cpp/fixVersion.py')
-rwxr-xr-x | cpp/fixVersion.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cpp/fixVersion.py b/cpp/fixVersion.py index 7e1a1339acc..e848da051e3 100755 --- a/cpp/fixVersion.py +++ b/cpp/fixVersion.py @@ -142,6 +142,9 @@ if icecs_home: fileMatchAndReplace(os.path.join(icecs_home, "config", "Make.rules.cs"), [("VERSION[\t\s]*= ([0-9]*\.[0-9]*\.[0-9]*)", version)]) + for f in find(icecs_home, "*.pc"): + fileMatchAndReplace(f, [("[\t\s]*version[\t\s]*=[\t\s]*([0-9]*\.[0-9]*\.[0-9]*)", version)]) + # # Fix version in IcePHP # |