diff options
author | konablend <[email protected]> | 2009-06-20 01:47:14 +0000 |
---|---|---|
committer | konablend <[email protected]> | 2009-06-20 01:47:14 +0000 |
commit | 989cb1d9fbc7faab456c317d03a9a3b8d68b00f7 (patch) | |
tree | 4e2c613f8c10a1bcc2d65591f4bed991f52cb017 /make | |
parent | b5da65ca2b50cc81ec38d0a73dee3b0c9fc14cfc (diff) |
BuildSystem: unofficial build version strings are now 'revNNNN' to differentiate from snapshots which use 'svnNNNN'
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2582 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'make')
-rw-r--r-- | make/configure.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make/configure.py b/make/configure.py index b6705d726..1b140739b 100644 --- a/make/configure.py +++ b/make/configure.py @@ -673,11 +673,11 @@ class Project( Action ): self.build = time.strftime('%Y%m%d') + '01' self.title = '%s svn%d (%s)' % (self.name,repo.rev,self.build) else: - self.version = 'svn%d' % (repo.rev) + self.version = 'rev%d' % (repo.rev) url_ctype = '_unofficial' url_ntype = 'unofficial' self.build = time.strftime('%Y%m%d') + '99' - self.title = '%s svn%d (%s)' % (self.name,repo.rev,self.build) + self.title = '%s rev%d (%s)' % (self.name,repo.rev,self.build) self.url_appcast = 'http://handbrake.fr/appcast%s%s.xml' % (url_ctype,url_arch) self.url_appnote = 'http://handbrake.fr/appcast/%s.html' % (url_ntype) |