From 3210eaf9529c1edcde214feb04a89bd813f41e8a Mon Sep 17 00:00:00 2001 From: Jeremy Leibs Date: Tue, 14 Sep 2010 18:41:13 +0000 Subject: [PATCH] Relaxing package_source.py version checking --- core/rosbuild/bin/package_source.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/rosbuild/bin/package_source.py b/core/rosbuild/bin/package_source.py index d26d0495..13cc66e4 100755 --- a/core/rosbuild/bin/package_source.py +++ b/core/rosbuild/bin/package_source.py @@ -44,7 +44,7 @@ def package_source(path): # Parse the version number from CMakeLists.txt with open(cmake_lists_path, 'r') as f: - m = re.search('rosbuild_make_distribution\(([0-9.]*)\)',f.read()) + m = re.search('rosbuild_make_distribution\((.*)\)',f.read()) if m is not None: stack_version = m.group(1) else: