From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27994 invoked from network); 6 Dec 1999 17:04:14 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 6 Dec 1999 17:04:14 -0000 Received: (qmail 22623 invoked by alias); 6 Dec 1999 17:04:07 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 8919 Received: (qmail 22613 invoked from network); 6 Dec 1999 17:03:57 -0000 Subject: Re: PATCH: the transform saga, Doc In-Reply-To: <19991206111521.A25416@dman.com> from Clint Adams at "Dec 6, 1999 11:15:21 am" To: schizo@debian.org (Clint Adams) Date: Mon, 6 Dec 1999 17:03:56 +0000 (GMT) Cc: zsh-workers@sunsite.auc.dk 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 Clint Adams wrote: >+ cp -f $$file $$tfile; \ >+ $(INSTALL_DATA) $$tfile $(DESTDIR)$(mandir)/man1 || exit 1; \ The cp is a bad idea when the name is not being transformed. Anyway, you don't need to create files in the build directory with the target name: install can do it. $(INSTALL_DATA) $(sdir)/$$file $(DESTDIR)$(mandir)/man1/$$tfile -zefram