2009-09-23 Felix Zielcke <fzielcke@z-51.de>

* util/grub-mkconfig_lib.in (grub_file_is_not_garbage): Add support
	for `*.dpkg-new'.
This commit is contained in:
fzielcke 2009-09-23 09:26:34 +00:00
parent c44c90db27
commit 9b3f836571
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2009-09-23 Felix Zielcke <fzielcke@z-51.de>
* util/grub-mkconfig_lib.in (grub_file_is_not_garbage): Add support
for `*.dpkg-new'.
2009-09-21 Colin Watson <cjwatson@ubuntu.com>
Build info documentation. Some code borrowed from Automake.

View File

@ -157,7 +157,7 @@ grub_file_is_not_garbage ()
{
if test -f "$1" ; then
case "$1" in
*.dpkg-dist|*.dpkg-old|*.dpkg-tmp) return 1 ;; # debian dpkg
*.dpkg-dist|*.dpkg-old|*.dpkg-tmp|*.dpkg-new) return 1 ;; # debian dpkg
esac
else
return 1