diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-10-27 13:44:28 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-10-27 13:44:28 +0000 |
commit | 4c11984404094a39f4e38bcd9e3ceec7f269555d (patch) | |
tree | 489cb173201517a6f86a895470c78cb083c0b8d5 /cpp/fixVersion.py | |
parent | Fixed bug 1511 (diff) | |
download | ice-4c11984404094a39f4e38bcd9e3ceec7f269555d.tar.bz2 ice-4c11984404094a39f4e38bcd9e3ceec7f269555d.tar.xz ice-4c11984404094a39f4e38bcd9e3ceec7f269555d.zip |
Modify icecs/config/Make.rules.mak
Diffstat (limited to 'cpp/fixVersion.py')
-rwxr-xr-x | cpp/fixVersion.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/fixVersion.py b/cpp/fixVersion.py index 06ab9775fbe..410f5e61a41 100755 --- a/cpp/fixVersion.py +++ b/cpp/fixVersion.py @@ -222,6 +222,9 @@ if not patchIceE: fileMatchAndReplace(os.path.join(icecs_home, "config", "Make.rules.cs"), [("VERSION[\t\s]*= ([0-9]*\.[0-9]*\.[0-9]*)", version)]) + fileMatchAndReplace(os.path.join(icecs_home, "config", "Make.rules.mak"), + [("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)]) @@ -249,6 +252,7 @@ if not patchIceE: ("VERSION_MINOR[\t\s]*= ([0-9]*)", minorVersion(version)), ("VERSION_PATCH[\t\s]*= ([0-9]*)", patchVersion(version))]) + print "Make sure to run 'make config' in icecs!" sys.exit(0) # |