From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22527 invoked from network); 24 Jul 2005 03:13:07 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 24 Jul 2005 03:13:07 -0000 Received: (qmail 30662 invoked from network); 24 Jul 2005 03:13:01 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 24 Jul 2005 03:13:01 -0000 Received: (qmail 20982 invoked by alias); 24 Jul 2005 03:12:57 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 21510 Received: (qmail 20973 invoked from network); 24 Jul 2005 03:12:56 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 24 Jul 2005 03:12:56 -0000 Received: (qmail 30351 invoked from network); 24 Jul 2005 03:12:56 -0000 Received: from acolyte.scowler.net (216.254.112.45) by a.mx.sunsite.dk with SMTP; 24 Jul 2005 03:12:52 -0000 Received: by acolyte.scowler.net (Postfix, from userid 1000) id 75CAD70055; Sat, 23 Jul 2005 23:12:49 -0400 (EDT) Date: Sat, 23 Jul 2005 23:12:49 -0400 From: Clint Adams To: zsh-workers@sunsite.dk Subject: PATCH: nitpick Message-ID: <20050724031249.GA28042@scowler.net> Mail-Followup-To: zsh-workers@sunsite.dk Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.9i X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00 autolearn=ham version=3.0.4 I'm trying to figure out whether the Scripts directory should be created by 'make install' or whether it should not be in $fpath. So I changed this instead. Index: Config/installfns.sh =================================================================== RCS file: /cvsroot/zsh/zsh/Config/installfns.sh,v retrieving revision 1.11 diff -u -r1.11 installfns.sh --- Config/installfns.sh 20 Jul 2005 18:08:53 -0000 1.11 +++ Config/installfns.sh 24 Jul 2005 03:05:30 -0000 @@ -17,7 +17,7 @@ case "$file" in */CVS/*) continue;; esac - if test x$FUNCTIONS_SUBDIRS != x -a x$FUNCTIONS_SUBDIRS != xno; then + if test x$FUNCTIONS_SUBDIRS != x && test x$FUNCTIONS_SUBDIRS != xno; then case "$file" in Completion/*/*) subdir="`echo $file | sed -e 's%/[^/]*/[^/]*$%%'`"