From 8df585e228eb1abe9b7c4ef6300d110121f6c474 Mon Sep 17 00:00:00 2001 From: Guido Guenther Date: Wed, 23 Apr 2008 18:16:36 +0200 Subject: use --no-auto-nmu Otherwise GIT_AUTHORS not in debian/control cause a NMU version number --- git-dch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'git-dch') diff --git a/git-dch b/git-dch index 886b1f40..c4490e77 100755 --- a/git-dch +++ b/git-dch @@ -41,13 +41,13 @@ def system(cmd): def add_changelog_entry(msg, author): "add aa single changelog entry" - cmd = """DEBFULLNAME="%s" dch --append -- "%s" """ % (author, msg.replace('"','\\\"')) + cmd = """DEBFULLNAME="%s" dch --no-auto-nmu --append -- "%s" """ % (author, msg.replace('"','\\\"')) system(cmd) def add_changelog_section(msg, distribution): "add a new changelog section" - cmd = "dch --distribution=%s -i %s" % (distribution, msg) + cmd = "dch --no-auto-nmu --distribution=%s -i %s" % (distribution, msg) system(cmd) def fixup_trailer(): -- cgit v1.2.3