]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2009-12-17 Felix Zielcke <fzielcke@z-51.de>
authorFelix Zielcke <fzielcke@z-51.de>
Thu, 17 Dec 2009 10:19:12 +0000 (11:19 +0100)
committerFelix Zielcke <fzielcke@z-51.de>
Thu, 17 Dec 2009 10:19:12 +0000 (11:19 +0100)
* gendistlist.sh: Use POSIX compliant `!' instead of `-not' in
the `find' command.

ChangeLog
gendistlist.sh

index 9506d26ca7d446118c526276b385d33fef672856..22d085fa4dfd517efa3743b080ac6130513111fc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-12-17 Felix Zielcke <fzielcke@z-51.de>
+
+       * gendistlist.sh: Use POSIX compliant `!' instead of `-not' in
+       the `find' command.
+
 2009-12-16  Vladimir Serbinenko  <phcoder@gmail.com>
 
        UUID support for HFS.
index 43366bd7314fd6dbfc122ca8963d9d845051afe3..102c0c11cef22bfb406ae3f32cbfbda1f047050b 100644 (file)
@@ -36,7 +36,7 @@ dir=`dirname $0`
 cd $dir
 
 for dir in $DISTDIRS; do
-  for d in `find $dir -type d -not -name .svn -not -name .bzr | sort`; do
+  for d in `find $dir -type d ! -name .svn ! -name .bzr | 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 '*.info' -o -name 'grub.cfg' -o -name 'README' \