diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-08-12 10:46:51 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-08-12 10:46:51 +0000 |
commit | 5ca214ee0113a82ed39444538da4099a7054060c (patch) | |
tree | 63310bd51eef494c77125282c728228b83e2d020 /cpp/iceemakedist.py | |
parent | fix. (diff) | |
download | ice-5ca214ee0113a82ed39444538da4099a7054060c.tar.bz2 ice-5ca214ee0113a82ed39444538da4099a7054060c.tar.xz ice-5ca214ee0113a82ed39444538da4099a7054060c.zip |
Fixed for version string change
Diffstat (limited to 'cpp/iceemakedist.py')
-rwxr-xr-x | cpp/iceemakedist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/iceemakedist.py b/cpp/iceemakedist.py index e493ee8e40d..deb160442fe 100755 --- a/cpp/iceemakedist.py +++ b/cpp/iceemakedist.py @@ -409,7 +409,7 @@ for makeFileName in [os.path.join("ice", "src", "IceUtil", "Makefile"), \ # 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("ice", "README*"), version) |