From owner-freebsd-ports Sat Nov 7 22:47:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA08369 for freebsd-ports-outgoing; Sat, 7 Nov 1998 22:47:28 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA08363 for ; Sat, 7 Nov 1998 22:47:27 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca6-19.ix.netcom.com [205.186.213.19]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id WAA20769; Sat, 7 Nov 1998 22:46:02 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id WAA03738; Sat, 7 Nov 1998 22:45:44 -0800 (PST) Date: Sat, 7 Nov 1998 22:45:44 -0800 (PST) Message-Id: <199811080645.WAA03738@silvia.hip.berkeley.edu> To: cdillon@wolves.k12.mo.us CC: freebsd-ports@FreeBSD.ORG In-reply-to: (message from Chris Dillon on Sun, 8 Nov 1998 00:25:26 -0600 (CST)) Subject: Re: Way to fetch distfiles for all dependancies? From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * > make fetch DEPENDS_TARGET=fetch * > * * Doesn't work here. I think the reason is that only FETCH_DEPENDS are * fetched with the fetch target, but not {BUILD|RUN|LIB}_DEPENDS or * DEPENDS. If I were to do a 'make all DEPENDS_TARGET=fetch', it would at You're right, sorry. Try this: make fetch depends DEPENDS_TARGET=fetch with this patch: === Index: bsd.port.subdir.mk =================================================================== RCS file: /usr/cvs/src/share/mk/bsd.port.subdir.mk,v retrieving revision 1.15.2.5 diff -u -r1.15.2.5 bsd.port.subdir.mk --- bsd.port.subdir.mk 1998/10/30 08:29:07 1.15.2.5 +++ bsd.port.subdir.mk 1998/11/08 06:44:28 @@ -28,7 +28,7 @@ # Creating README.html for package. # # afterinstall, all, beforeinstall, build, checksum, clean, -# configure, deinstall, depend, describe, extract, fetch, fetch-list, +# configure, deinstall, depend, depends, describe, extract, fetch, fetch-list, # install, package, package-loop, readmes, realinstall, reinstall, tags # @@ -79,7 +79,7 @@ ${MAKE} all .for __target in all fetch fetch-list package package-loop extract configure \ - build clean deinstall depend describe distclean \ + build clean deinstall depend depends describe distclean \ reinstall tags checksum .if !target(${__target}) ${__target}: _SUBDIRUSE === Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message