summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2011-04-13 18:19:36 +0000
committerjstebbins <[email protected]>2011-04-13 18:19:36 +0000
commit116a17393c9a59a6fb53f9edf695284214bf704f (patch)
treec11962602908c8d0b46e059f1d14c3cc30cd80e3
parent36800929d154aa354b70c078092d89a9a55e7542 (diff)
Change HB.version from "svnXXXX" to "XXXXsvn"
This fixes an issue with packaging for Ubuntu 11.04. The packaging tool now requires that version numbers start with a digit. They used to just issue a warning. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3919 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r--make/configure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/configure.py b/make/configure.py
index f9d5f2675..faeab42a6 100644
--- a/make/configure.py
+++ b/make/configure.py
@@ -760,7 +760,7 @@ class Project( Action ):
self.build = time.strftime('%Y%m%d') + '00'
self.title = '%s %s (%s)' % (self.name,self.version,self.build)
elif repo.type == 'developer':
- self.version = 'svn%d' % (repo.rev)
+ self.version = '%dsvn' % (repo.rev)
url_ctype = '_unstable'
url_ntype = 'unstable'
self.build = time.strftime('%Y%m%d') + '01'