11224: Util/mkdisttree.sh: problem with pattern matching `.' in

find.
This commit is contained in:
Tanaka Akira 2000-05-06 08:05:25 +00:00
parent c1dc0ffe4f
commit c0d40309af
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2000-05-06 Tanaka Akira <akr@zsh.org>
* 11224: Util/mkdisttree.sh: problem with pattern matching `.' in
find.
* 11223: Completion/Base/_regex_arguments, Completion/Debian/_apt,
Completion/X/_xset, Completion/X/_xwit, Doc/Zsh/compsys.yo:
_regex_arguments use _alternative.

View file

@ -46,7 +46,7 @@ filelist=filelist$$
trap 'rm -f $filelist; rm -rf $disttree; exit 1' 1 2 15
(
cd $sdir_top
find . -name '*.*' -prune -o -name .distfiles -print
find . -name '?*.*' -prune -o -name .distfiles -print
) > $filelist
( while read dfn; do
subdir=`echo $dfn | sed 's,/\.distfiles$,,'`