]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2009-09-05 Felix Zielcke <fzielcke@z-51.de>
authorfzielcke <fzielcke@localhost>
Sat, 5 Sep 2009 19:26:11 +0000 (19:26 +0000)
committerfzielcke <fzielcke@localhost>
Sat, 5 Sep 2009 19:26:11 +0000 (19:26 +0000)
* gendistlist.sh: Add `grub-dumpdevtree' and `*.lua' to the list
find searches for.

ChangeLog
gendistlist.sh

index 7d4946b6ebcc794592208c77c39655632d437647..155a19b5a7d71b13fcd56df85b73636590c31201 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-09-05  Felix Zielcke  <fzielcke@z-51.de>
+
+       * gendistlist.sh: Add `grub-dumpdevtree' and `*.lua' to the list
+       find searches for.
+
 2009-09-04  Vladimir Serbinenko  <phcoder@gmail.com>
 
        * loader/i386/xnu.c (grub_cpu_xnu_fill_devicetree): Remove
index 5fe5d186bd229edd062dc61f7ee23dadebd37df9..3278ed0b3905d3ac381e0a65fa2526927bbd1556 100644 (file)
@@ -39,6 +39,6 @@ for dir in $DISTDIRS; do
     find $d -maxdepth 1 -name '*.[chSy]' -o -name '*.mk' -o -name '*.rmk' \
       -o -name '*.rb' -o -name '*.in' -o -name '*.tex' -o -name '*.texi' \
       -o -name 'grub.cfg' -o -name 'README' -o -name '*.sc' -o -name 'mdate-sh' \
-      -o -name '*.sh' | sort
+      -o -name '*.sh' -o -name 'grub-dumpdevtree' -o -name '*.lua' | sort
   done
 done