From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12384 invoked from network); 23 Dec 1999 15:05:45 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 23 Dec 1999 15:05:45 -0000 Received: (qmail 4228 invoked by alias); 23 Dec 1999 15:05:40 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 9144 Received: (qmail 4221 invoked from network); 23 Dec 1999 15:05:40 -0000 X-Envelope-Sender-Is: Andrej.Borsenkow@mow.siemens.ru (at relayer goliath.siemens.de) From: "Andrej Borsenkow" To: "ZSH workers mailing list" Subject: PATCH: RE: PATCH: Re: Something weird with modules aliases Date: Thu, 23 Dec 1999 18:04:21 +0300 Message-ID: <001c01bf4d56$fe281870$21c9ca95@mow.siemens.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 In-Reply-To: > > 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"