Remove /boot/grub/unicode.pf2 on purge of grub-efi-{amd64,i386} (closes:

#697183).
This commit is contained in:
Colin Watson 2013-01-02 11:53:27 +00:00
parent 8fb8ec2ec0
commit d971277f76
2 changed files with 6 additions and 0 deletions

2
debian/changelog vendored
View File

@ -1,6 +1,8 @@
grub2 (2.00-10) UNRELEASED; urgency=low
* Support parallel builds.
* Remove /boot/grub/unicode.pf2 on purge of grub-efi-{amd64,i386} (closes:
#697183).
-- Colin Watson <cjwatson@debian.org> Wed, 02 Jan 2013 08:58:20 +0000

4
debian/postrm.in vendored
View File

@ -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
;;