2009-12-17 Felix Zielcke <fzielcke@z-51.de>

* gendistlist.sh: Use POSIX compliant `!' instead of `-not' in
	the `find' command.
This commit is contained in:
Felix Zielcke 2009-12-17 11:19:12 +01:00
parent c179ebe4ee
commit 0297aafb9f
2 changed files with 6 additions and 1 deletions

View file

@ -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.

View 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' \