summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBradley Sepos <[email protected]>2016-05-24 09:51:27 -0400
committerBradley Sepos <[email protected]>2016-05-24 10:01:02 -0400
commita6f62a453457f06d00e56dedf3c7ecc435b6d7e0 (patch)
tree8ecb3f4652cc35c3ec19914c9e12a31c62e6f71d
parent0ba02795a907ca86fb220d349777e628f1a0314e (diff)
build: Update regex in configure.py to fix buggy Python versions.0.10.x
(cherry picked from commit 71ed73bf0f16a428c8540e8b7630ab5a08926958)
-rw-r--r--make/configure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/configure.py b/make/configure.py
index c39309737..264d1ea84 100644
--- a/make/configure.py
+++ b/make/configure.py
@@ -818,7 +818,7 @@ class Project( Action ):
suffix = ''
if repo.tag != '':
- m = re.match( '^([0-9]+)\.([0-9]+)\.([0-9]+)-?(.*)?$', repo.tag )
+ m = re.match( '^([0-9]+)\.([0-9]+)\.([0-9]+)-?(.+)?$', repo.tag )
if not m:
cfg.errln( 'Invalid repo tag format %s\n', repo.tag )
sys.exit( 1 )