From owner-freebsd-ports Fri Jun 13 14:53:01 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id OAA22815 for ports-outgoing; Fri, 13 Jun 1997 14:53:01 -0700 (PDT) Received: from agora.rdrop.com (root@agora.rdrop.com [199.2.210.241]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id OAA22810 for ; Fri, 13 Jun 1997 14:52:59 -0700 (PDT) Received: from alpha.xerox.com (alpha.Xerox.COM [13.1.64.93]) by agora.rdrop.com (8.8.5/8.8.5) with SMTP id OAA29060 for ; Fri, 13 Jun 1997 14:52:50 -0700 (PDT) Received: from crevenia.parc.xerox.com ([13.2.116.11]) by alpha.xerox.com with SMTP id <18250(7)>; Fri, 13 Jun 1997 14:51:05 PDT Received: from localhost by crevenia.parc.xerox.com with SMTP id <177512>; Fri, 13 Jun 1997 14:50:53 -0700 To: Bill Fenner cc: asami@cs.berkeley.edu (Satoshi Asami), ports@freebsd.org Subject: Re: cvs commit: ports/devel/gmake/patches patch-aa In-reply-to: Your message of "Fri, 13 Jun 97 14:34:58 PDT." <97Jun13.143458pdt.177512@crevenia.parc.xerox.com> Date: Fri, 13 Jun 1997 14:50:48 PDT From: Bill Fenner Message-Id: <97Jun13.145053pdt.177512@crevenia.parc.xerox.com> Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Bill Fenner wrote: >.for infofile in ${INFO} > @echo info/${infofile} >.endfor Of course, ports don't tend to run makeinfo --no-split like bsd.info.mk does, so this will have to get a little more complex (perhaps cd ${PREFIX}; for i in info/${infofile}*; do; echo $i; done), which then makes this depend on "make install". I guess it's starting to get complicated =) Bill