Fix the wrong additional buildnumber in debian build

This commit is contained in:
Frank 2011-03-11 15:47:31 -08:00
parent 75401d4556
commit a6861d0ac1

View File

@ -616,7 +616,7 @@ def deb(context):
raise Utils.WafError("Please specify a build number to go along with --prerelease")
# version/release numbers are read by dpkg-buildpackage from line 1 of debian/changelog
# http://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Version
tempchangelog = """%s (%s.%s-~%s%s) unstable; urgency=low
tempchangelog = """%s (%s-~%s%s) unstable; urgency=low
* Automatic prerelease build
@ -624,7 +624,6 @@ def deb(context):
APPNAME,
VERSION,
Utils.getbuildnumber(),
Utils.getbuildnumber(),
Options.options.PRERELEASE,
email.Utils.formatdate(time.time())
)