diff options
author | Bernard Normier <bernard@zeroc.com> | 2007-02-07 16:04:54 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2007-02-07 16:04:54 +0000 |
commit | 0ceddb4c7596334a25757446a85477d93a34af5c (patch) | |
tree | 15f18c43d584d65458f517cf76f02d5dbff595ac /cpp/fixVersion.py | |
parent | Fixed .pc files version (diff) | |
download | ice-0ceddb4c7596334a25757446a85477d93a34af5c.tar.bz2 ice-0ceddb4c7596334a25757446a85477d93a34af5c.tar.xz ice-0ceddb4c7596334a25757446a85477d93a34af5c.zip |
Fixed icecs versioning
Diffstat (limited to 'cpp/fixVersion.py')
-rwxr-xr-x | cpp/fixVersion.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/fixVersion.py b/cpp/fixVersion.py index f682c88a6c9..145fdbd8d8b 100755 --- a/cpp/fixVersion.py +++ b/cpp/fixVersion.py @@ -285,7 +285,9 @@ if not patchIceE: [("IceStormService,([0-9]+b?)", soVersion(version))]) for f in find(icecs_home, "*.pc"): - fileMatchAndReplace(f, [("[\t\s]*version[\t\s]*=[\t\s]*" + vpatMatch, version)]) + print "matching " + f + fileMatchAndReplace(f, [("[\t\s]*version[\t\s]*=[\t\s]* " + vpatMatch, + majorVersion(version) + "." + minorVersion(version) + "." + patchVersion(version))]) # # Fix version in IceVB sources |