summaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
authorBradley Sepos <[email protected]>2016-05-24 09:51:27 -0400
committerBradley Sepos <[email protected]>2016-05-24 09:51:27 -0400
commit71ed73bf0f16a428c8540e8b7630ab5a08926958 (patch)
tree4587f813be1dd226f765492aa2fa47511018a0a6 /make
parente117959205266ad5b243391c976632e5ec186af8 (diff)
build: Update regex in configure.py to fix buggy Python versions.
Diffstat (limited to 'make')
-rw-r--r--make/configure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/configure.py b/make/configure.py
index 2a3ad3214..0b9050ec8 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 )