diff options
Diffstat (limited to 'make')
-rw-r--r-- | make/configure.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/make/configure.py b/make/configure.py index c7a5fedc9..35bb397ac 100644 --- a/make/configure.py +++ b/make/configure.py @@ -833,7 +833,8 @@ class Project( Action ): self.vmajor = int(vmajor) self.vminor = int(vminor) self.vpoint = int(vpoint) - self.suffix = suffix + if suffix: + self.suffix = suffix if repo.type != 'release' or options.snapshot: self.version = repo.date.strftime("%Y%m%d%H%M%S") |