From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11819 invoked from network); 1 Sep 1999 18:03:27 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 1 Sep 1999 18:03:27 -0000 Received: (qmail 26890 invoked by alias); 1 Sep 1999 18:03:18 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 7618 Received: (qmail 26883 invoked from network); 1 Sep 1999 18:03:16 -0000 From: "Bart Schaefer" Message-Id: <990901180311.ZM22893@candle.brasslantern.com> Date: Wed, 1 Sep 1999 18:03:11 +0000 X-Mailer: Z-Mail (5.0.0 30July97) To: zsh-workers@sunsite.auc.dk Subject: PATCH: Config/{un,}installfns.sh fail when not using function subdirs MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Maybe nobody else needs the first hunk of this and I'm just out of sync, but the uninstallfn.sh hunk is definitely needed following my previous patch to update it for $(DESTDIR) etc. Index: Config/installfns.sh =================================================================== @@ -13,7 +13,7 @@ if test -f "$sdir/$file"; then install="$install $file" else - install="$install `echo '' $sdir/$file | sed -e \"s% $sdir/%%g\"`" + install="$install `echo '' $sdir/$file | sed -e \"s% $sdir/% %g\"`" fi done Index: Config/uninstallfns.sh =================================================================== @@ -7,7 +7,7 @@ if test -f "$sdir/$file"; then install="$install $file" else - install="$install `echo '' $sdir/$file | sed -e \"s% $sdir/%%g\"`" + install="$install `echo '' $sdir/$file | sed -e \"s% $sdir/% %g\"`" fi done -- Bart Schaefer Brass Lantern Enterprises http://www.well.com/user/barts http://www.brasslantern.com