summaryrefslogtreecommitdiff
path: root/cpp/fixVersion.py
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2006-10-27 13:44:28 +0000
committerDwayne Boone <dwayne@zeroc.com>2006-10-27 13:44:28 +0000
commit4c11984404094a39f4e38bcd9e3ceec7f269555d (patch)
tree489cb173201517a6f86a895470c78cb083c0b8d5 /cpp/fixVersion.py
parentFixed bug 1511 (diff)
downloadice-4c11984404094a39f4e38bcd9e3ceec7f269555d.tar.bz2
ice-4c11984404094a39f4e38bcd9e3ceec7f269555d.tar.xz
ice-4c11984404094a39f4e38bcd9e3ceec7f269555d.zip
Modify icecs/config/Make.rules.mak
Diffstat (limited to 'cpp/fixVersion.py')
-rwxr-xr-xcpp/fixVersion.py4
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)
#