summaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
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 7976a03c5..ecb2816b0 100644
--- a/make/configure.py
+++ b/make/configure.py
@@ -797,7 +797,7 @@ class Project( Action ):
url_arch = ''
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 )