diff --git a/debian/changelog b/debian/changelog index b157c5959..d76c9ad58 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +grub2 (1.99-26) UNRELEASED; urgency=low + + * Remove /boot/grub/unicode.pf2 on purge of grub-efi-{amd64,i386} (closes: + #697183). + + -- Colin Watson Wed, 02 Jan 2013 11:53:42 +0000 + grub2 (1.99-25) unstable; urgency=low * Ensure /boot/grub exists before copying files to it for EFI installs diff --git a/debian/postrm.in b/debian/postrm.in index 83b89c022..d9237f017 100644 --- a/debian/postrm.in +++ b/debian/postrm.in @@ -28,6 +28,10 @@ case "$1" in rmdir --ignore-fail-on-non-empty /boot/grub || true fi ;; + + grub-efi-ia32|grub-efi-amd64) + rm -f /boot/grub/unicode.pf2 + ;; esac ;;