summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Debian/Debhelper/Dh_Lib.pm2
-rw-r--r--debian/changelog2
2 files changed, 3 insertions, 1 deletions
diff --git a/Debian/Debhelper/Dh_Lib.pm b/Debian/Debhelper/Dh_Lib.pm
index 8af365ff..960f2721 100644
--- a/Debian/Debhelper/Dh_Lib.pm
+++ b/Debian/Debhelper/Dh_Lib.pm
@@ -313,7 +313,7 @@ sub dirname {
}
}
- if ($c < 4 && ! $warned_compat) {
+ if ($c <= 4 && ! $warned_compat) {
warning("Compatibility levels before 5 are deprecated.");
$warned_compat=1;
}
diff --git a/debian/changelog b/debian/changelog
index b9debf47..495132e7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -16,6 +16,8 @@ debhelper (7.4.4) UNRELEASED; urgency=low
time soon.) Closes: #554509
* Drop deprecated programs from the list of commands in debhelper(7).
Closes: #548382
+ * Adjust code to add deprecation warning for compatability level 4.
+ (Man page already said it was deprecated.) Closes: #555899
-- Joey Hess <joeyh@debian.org> Wed, 28 Oct 2009 18:10:45 -0400