From: Ian Jackson Date: Thu, 1 Nov 2007 20:00:54 +0000 (+0000) Subject: Fix erroneous description of Breaks in dselect X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c461dc3e566b21fe51d77e836d8cae674372207;p=dpkg Fix erroneous description of Breaks in dselect The description should be 'breaks' as in 'A breaks B' rather than 'A breaks with B' since it is B that is broken by A and not vice versa. --- diff --git a/ChangeLog b/ChangeLog index 279b6483..8a2263ff 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-03-09 Ian Jackson + + * dselect/pkgdisplay.cc (relatestrings): Change 'breaks with' to + 'breaks'. + 2008-03-09 Ian Jackson * dselect/pkgdepcon.cc (packagelist::resolvedepcon): Move dep_breaks diff --git a/debian/changelog b/debian/changelog index 7cf92631..4444b7e3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -23,6 +23,8 @@ dpkg (1.14.17) UNRELEASED; urgency=low Thanks to Ian Jackson. * Implement 'Breaks' properly in dselect. Closes: #448946 Thanks to Ian Jackson. + * Fix erroneous description of Breaks in dselect output. + Thanks to Ian Jackson. [ Raphael Hertzog ] * Add a warning displayed by dpkg-genchanges if the current version is diff --git a/dselect/pkgdisplay.cc b/dselect/pkgdisplay.cc index e7567a46..2e78ed7d 100644 --- a/dselect/pkgdisplay.cc +++ b/dselect/pkgdisplay.cc @@ -72,7 +72,7 @@ const char N_("recommends"), N_("depends on"), N_("pre-depends on"), - N_("breaks with"), + N_("breaks"), N_("conflicts with"), N_("provides"), N_("replaces"),