]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2009-06-10 Felix Zielcke <fzielcke@z-51.de>
authorfzielcke <fzielcke@localhost>
Wed, 10 Jun 2009 21:01:29 +0000 (21:01 +0000)
committerfzielcke <fzielcke@localhost>
Wed, 10 Jun 2009 21:01:29 +0000 (21:01 +0000)
* gendistlist.sh (EXTRA_DISTFILES): Add `genhandlerlist.sh' and
`genparttoollist.sh'.
(DISTDIRS): Add `efiemu', `mmap', `parttool' and `script'.
Add `*.sh' to the list find searches for and change `mdate.sh'
to `mdate-sh'.

ChangeLog
gendistlist.sh

index ce7330e78d39be1d4b6a50a6f8edf74b1a9190a9..b67ed2cc702d7c6b35b5839b2ebad78acbbadb73 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2009-06-10  Felix Zielcke  <fzielcke@z-51.de>
+
+       * gendistlist.sh (EXTRA_DISTFILES): Add `genhandlerlist.sh' and
+       `genparttoollist.sh'.
+       (DISTDIRS): Add `efiemu', `mmap', `parttool' and `script'.
+       Add `*.sh' to the list find searches for and change `mdate.sh'
+       to `mdate-sh'.
+
 2009-06-10  Pavel Roskin  <proski@gnu.org>
 
        * include/grub/multiboot2.h: Provide compatibility defines for
index 011554ddf592ada64d464c8c2990658931a155cf..5fe5d186bd229edd062dc61f7ee23dadebd37df9 100644 (file)
 EXTRA_DISTFILES="AUTHORS COPYING ChangeLog DISTLIST INSTALL NEWS README \
        THANKS TODO Makefile.in aclocal.m4 autogen.sh config.guess \
        config.h.in config.sub configure configure.ac gencmdlist.sh \
-       gendistlist.sh genfslist.sh geninit.sh geninitheader.sh genkernsyms.sh.in \
-       genmk.rb genmoddep.awk genmodsrc.sh genpartmaplist.sh gensymlist.sh.in
-       install-sh mkinstalldirs stamp-h.in"
+       gendistlist.sh genfslist.sh genhandlerlist.sh geninit.sh \
+       geninitheader.sh genkernsyms.sh.in genmk.rb genmoddep.awk \
+       genmodsrc.sh genpartmaplist.sh genparttoollist.sh \
+       gensymlist.sh.in install-sh mkinstalldirs stamp-h.in"
 
-DISTDIRS="boot bus commands conf disk docs font fs hello hook include io kern lib \
-       loader normal partmap term util video"
+DISTDIRS="boot bus commands conf disk docs efiemu font fs hello hook include io \
+       kern lib loader mmap normal partmap parttool script term util video"
 
 LC_COLLATE=C
 export LC_COLLATE
@@ -37,7 +38,7 @@ for dir in $DISTDIRS; do
   for d in `find $dir -type d | sed '/\/\.svn$/d;\/\.svn\//d' | sort`; 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' \
-      | sort
+      -o -name 'grub.cfg' -o -name 'README' -o -name '*.sc' -o -name 'mdate-sh' \
+      -o -name '*.sh' | sort
   done
 done