Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
PATCH: RE: PATCH: Re: Something weird with modules aliases
- X-seq: zsh-workers 9144
- From: "Andrej Borsenkow" <Andrej.Borsenkow@xxxxxxxxxxxxxx>
- To: "ZSH workers mailing list" <zsh-workers@xxxxxxxxxxxxxx>
- Subject: PATCH: RE: PATCH: Re: Something weird with modules aliases
- Date: Thu, 23 Dec 1999 18:04:21 +0300
- Importance: Normal
- In-reply-to: <E12196Y-0001c5-00@xxxxxxxxxxxxxxxxxx>
- Mailing-list: contact zsh-workers-help@xxxxxxxxxxxxxx; run by ezmlm
>
> Andrej Borsenkow wrote:
> >bor@itsrm2% find . -name '?*.*' -prune -o -name .preconfig -print
>
> That should be fine. We should make the same changes in mkdisttree.sh.
>
Hope, it will not be mangled (why zsh-workers do not like MIME?)
--- Util/mkdisttree.sh.org Wed Dec 8 21:16:29 1999
+++ Util/mkdisttree.sh Thu Dec 23 18:02:07 1999
@@ -46,7 +46,7 @@
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$,,'`
--- Util/preconfig.org Thu Dec 23 01:02:59 1999
+++ Util/preconfig Thu Dec 23 18:02:22 1999
@@ -1,6 +1,6 @@
#! /bin/sh
-find . \( -name '?*.*' -prune \) -o \( -name .preconfig -print \) | (
+find . \( -name '?*.*' -prune \) -o -name .preconfig -print | (
while read pre; do
cmd=`echo $pre | sed 's,^,cd ,;s,/\([^/]*\)$, \&\& ./\1,'`
echo >&2 "$cmd"
Messages sorted by:
Reverse Date,
Date,
Thread,
Author