summaryrefslogtreecommitdiffstats
path: root/make/configure.py
diff options
context:
space:
mode:
Diffstat (limited to 'make/configure.py')
-rw-r--r--make/configure.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/make/configure.py b/make/configure.py
index 35bb397ac..cc758330c 100644
--- a/make/configure.py
+++ b/make/configure.py
@@ -823,7 +823,6 @@ class Project( Action ):
else:
url_arch = ''
- suffix = ''
if repo.tag != '':
m = re.match( '^([0-9]+)\.([0-9]+)\.([0-9]+)-?(.+)?$', repo.tag )
if not m:
@@ -852,7 +851,7 @@ class Project( Action ):
self.build = time.strftime('%Y%m%d', now) + '01'
self.title = '%s %s (%s)' % (self.name,self.version,self.build)
else:
- m = re.match('^([a-zA-Z]+)\.([0-9]+)$', suffix)
+ m = re.match('^([a-zA-Z]+)\.([0-9]+)$', self.suffix)
if not m:
# Regular release
self.version = '%d.%d.%d' % (self.vmajor,self.vminor,self.vpoint)