From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3261 invoked from network); 9 Dec 1999 09:48:14 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 9 Dec 1999 09:48:14 -0000 Received: (qmail 22653 invoked by alias); 9 Dec 1999 09:48:06 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 8963 Received: (qmail 22646 invoked from network); 9 Dec 1999 09:48:05 -0000 Subject: PATCH: correction for misapplied name-transform patch In-Reply-To: from Tanaka Akira at "Dec 9, 1999 7:23:50 am" To: zsh-workers@sunsite.auc.dk Date: Thu, 9 Dec 1999 09:48:03 +0000 (GMT) X-Mailer: ELM [version 2.4ME+ PL48 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Message-Id: From: Zefram Tanaka Akira wrote: >And 8950 isn't applied properly, maybe. Yes, that diff you posted needs to be used in reverse. This should fix it: --- Src/Makefile.in 1999/12/08 22:05:58 1.1.1.21 +++ Src/Makefile.in 1999/12/08 16:22:39 1.1.1.20 @@ -175,12 +175,11 @@ # uninstall binary uninstall.bin-here: uninstall.bin-@L@ - tzsh=`echo zsh | sed '$(transform)'`; \ rm -f $(DESTDIR)$(bindir)/$(tzsh)-$(VERSION) $(DESTDIR)$(bindir)/$(tzsh) uninstall.bin-N: uninstall.bin-L: - rm -f $(DESTDIR)$(libdir)/zsh/$(LIBZSH) + rm -f $(DESTDIR)$(libdir)/$(tzsh)/$(LIBZSH) # ========== DEPENDENCIES FOR CLEANUP ========== END