[2609] 2009-09-23 Felix Zielcke <[email protected]>

Felix Zielcke <[email protected]> Wed, 23 Sep 2009 09:46:10 +0000
Newsgroups gmane.comp.boot-loaders.grub.cvs
Message-ID <[email protected]>
Revision: 2609
          http://svn.sv.gnu.org/viewvc/?view=rev&root=grub&revision=2609
Author:   fzielcke
Date:     2009-09-23 09:46:08 +0000 (Wed, 23 Sep 2009)
Log Message:
-----------
2009-09-23  Felix Zielcke  <[email protected]>

	* util/grub-mkconfig_lib.in (grub_file_is_not_garbage): Cope with `*.dpkg-*'

Modified Paths:
--------------
    trunk/grub2/ChangeLog
    trunk/grub2/util/grub-mkconfig_lib.in

Modified: trunk/grub2/ChangeLog
===================================================================
--- trunk/grub2/ChangeLog	2009-09-23 09:26:34 UTC (rev 2608)
+++ trunk/grub2/ChangeLog	2009-09-23 09:46:08 UTC (rev 2609)
@@ -1,5 +1,9 @@
 2009-09-23  Felix Zielcke  <[email protected]>
 
+	* util/grub-mkconfig_lib.in (grub_file_is_not_garbage): Cope with `*.dpkg-*'
+
+2009-09-23  Felix Zielcke  <[email protected]>
+
 	* util/grub-mkconfig_lib.in (grub_file_is_not_garbage): Add support
 	for `*.dpkg-new'.
 

Modified: trunk/grub2/util/grub-mkconfig_lib.in
===================================================================
--- trunk/grub2/util/grub-mkconfig_lib.in	2009-09-23 09:26:34 UTC (rev 2608)
+++ trunk/grub2/util/grub-mkconfig_lib.in	2009-09-23 09:46:08 UTC (rev 2609)
@@ -157,7 +157,7 @@
 {
   if test -f "$1" ; then
     case "$1" in
-      *.dpkg-dist|*.dpkg-old|*.dpkg-tmp|*.dpkg-new) return 1 ;; # debian dpkg
+      *.dpkg-*) return 1 ;; # debian dpkg
     esac
   else
     return 1