mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-02-13 19:31:20 +01:00
11224: Util/mkdisttree.sh: problem with pattern matching `.' in
find.
This commit is contained in:
parent
c1dc0ffe4f
commit
c0d40309af
2 changed files with 4 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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$,,'`
|
||||
|
|
Loading…
Reference in a new issue