Browse Source

debian/apt.postinst: use --compare-versions lt instead of lt-nl, to ensure the apt-auto-removal file is correctly create, thanks to Ben Hutchings

Michael Vogt 10 years ago
parent
commit
5361a61805
2 changed files with 2 additions and 2 deletions
  1. 1 1
      debian/apt.postinst
  2. 1 1
      debian/changelog

+ 1 - 1
debian/apt.postinst

@@ -33,7 +33,7 @@ case "$1" in
         fi
 
         # create kernel autoremoval blacklist on update
-        if dpkg --compare-versions "$2" lt-nl 0.9.9.3; then
+        if dpkg --compare-versions "$2" lt 0.9.9.3; then
             /etc/kernel/postinst.d/apt-auto-removal
         fi
     ;;

+ 1 - 1
debian/changelog

@@ -4,7 +4,7 @@ apt (0.9.11.5) UNRELEASED; urgency=low
   * Fix typo in apt-private/private-show.cc. Thanks to Benjamin
     Keresa. Closes: #724073
   
-  [  Mark Hymers ]
+  [ Mark Hymers ]
   * fix libapt-inst for >2G debs (closes: #725483)
 
  -- Christian Perrier <bubulle@debian.org>  Mon, 23 Sep 2013 07:05:34 +0200