From 1dbc9df337e5517188da6640991a7c03df2380f7 Mon Sep 17 00:00:00 2001 From: Nathan Handler Date: Sat, 16 May 2009 19:11:45 +0000 Subject: [PATCH] * update-maintainer: - Make change proposed by Bryce Harrington to make the script recognize versions that end in buildX as valid Ubuntu versions, and thus allow it to work with fakesyncs. (LP: #376623) --- debian/changelog | 8 +++++++- update-maintainer | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 914f873..ad3571f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -35,7 +35,13 @@ ubuntu-dev-tools (0.74) UNRELEASED; urgency=low - Convert to getopt so that '--section main' works as well as '--section=main'. - -- Iain Lane Sun, 10 May 2009 19:13:34 +0100 + [ Nathan Handler ] + * update-maintainer: + - Make change proposed by Bryce Harrington to make the script recognize + versions that end in buildX as valid Ubuntu versions, and thus allow it + to work with fakesyncs. (LP: #376623) + + -- Nathan Handler Sat, 16 May 2009 19:09:21 +0000 ubuntu-dev-tools (0.73) karmic; urgency=low diff --git a/update-maintainer b/update-maintainer index b23ead7..7504d90 100755 --- a/update-maintainer +++ b/update-maintainer @@ -86,7 +86,7 @@ for file in control control.in control.real; do fi done -if ! head -1 $DEBIANDIR/changelog | grep -q '(*ubuntu.*)' +if ! head -1 $DEBIANDIR/changelog | egrep -q '(*ubuntu.*|*build.*)' then echo "Latest changelog entry has no Ubuntu version number." >&2 exit 1