diff options
Diffstat (limited to 'cppe/makedist.py')
-rwxr-xr-x | cppe/makedist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cppe/makedist.py b/cppe/makedist.py index 627443aab79..11ae0ce05c1 100755 --- a/cppe/makedist.py +++ b/cppe/makedist.py @@ -252,7 +252,7 @@ fixMakeRules(os.path.join("icee", "config", "Make.rules")) # Get Ice-E version. # config = open(os.path.join("icee", "include", "IceE", "Config.h"), "r") -version = re.search("ICEE_STRING_VERSION \"([0-9\.]*)\"", config.read()).group(1) +version = re.search("ICE_STRING_VERSION \"([0-9\.]*)\"", config.read()).group(1) print "Fixing version in README and INSTALL files..." fixVersion(find("icee", "README*"), version) |