From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7089 invoked from network); 1 Feb 2001 05:55:16 -0000 Received: from sunsite.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 1 Feb 2001 05:55:16 -0000 Received: (qmail 17375 invoked by alias); 1 Feb 2001 05:55:10 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 13419 Received: (qmail 17364 invoked from network); 1 Feb 2001 05:55:09 -0000 X-Envelope-Sender-Is: Andrej.Borsenkow@mow.siemens.ru (at relayer goliath.siemens.de) From: "Andrej Borsenkow" To: Subject: RE: Somebody with gcc knowledge here? (Was: termcap moodule problem on Cygwin ) Date: Thu, 1 Feb 2001 08:55:05 +0300 Message-ID: <000001c08c13$86b378f0$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.2911.0) In-Reply-To: Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 > > > Andrej Borsenkow wrote: > >+ case "$all_subdirs" in > >+ *" $lastsub"* ) ;; > >+ *" $lastsub "* ) ;; > > What you actually want here is > > case "$all_subdirs " in > *" $lastsub "* ) ;; > I actually wanted is case "$all_subdirs" in *" $lastsub" ) ;; *" $lastsub "* ) ;; to catch the case of just added subdir. It was copy'n'paste problem. Or do I miss something? -andrej