From a6f62a453457f06d00e56dedf3c7ecc435b6d7e0 Mon Sep 17 00:00:00 2001 From: Bradley Sepos Date: Tue, 24 May 2016 09:51:27 -0400 Subject: [PATCH] build: Update regex in configure.py to fix buggy Python versions. (cherry picked from commit 71ed73bf0f16a428c8540e8b7630ab5a08926958) --- make/configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ) -- 2.40.0