diff options
author | Mark Spruiell <mes@zeroc.com> | 2003-02-07 04:09:25 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2003-02-07 04:09:25 +0000 |
commit | 0783554474fe3aefd45b2e60d95e663dcc38949d (patch) | |
tree | 9a853e291d052c9796c30bdafa02f617c986c9f6 /cpp/makedist.py | |
parent | An underscore in Slice identifiers now generates a warning. Updated test (diff) | |
download | ice-0783554474fe3aefd45b2e60d95e663dcc38949d.tar.bz2 ice-0783554474fe3aefd45b2e60d95e663dcc38949d.tar.xz ice-0783554474fe3aefd45b2e60d95e663dcc38949d.zip |
fixing version regexp
Diffstat (limited to 'cpp/makedist.py')
-rwxr-xr-x | cpp/makedist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/makedist.py b/cpp/makedist.py index 2c3c1bdaaf1..d0f83208ff8 100755 --- a/cpp/makedist.py +++ b/cpp/makedist.py @@ -296,7 +296,7 @@ if not skipDocs: # Get Ice version. # config = open(os.path.join("ice", "include", "IceUtil", "Config.h"), "r") -version = re.search("ICE_STRING_VERSION \"(.*)\"", config.read()).group(1) +version = re.search("ICE_STRING_VERSION \"([0-9\.]*)\"", config.read()).group(1) # # Create archives. |