Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 7 Nov 1998 22:45:44 -0800 (PST)
From:      asami@FreeBSD.ORG (Satoshi Asami)
To:        cdillon@wolves.k12.mo.us
Cc:        freebsd-ports@FreeBSD.ORG
Subject:   Re: Way to fetch distfiles for all dependancies?
Message-ID:  <199811080645.WAA03738@silvia.hip.berkeley.edu>
In-Reply-To:  <Pine.BSF.4.05.9811072355450.14681-100000@duey.hs.wolves.k12.mo.us> (message from Chris Dillon on Sun, 8 Nov 1998 00:25:26 -0600 (CST))

next in thread | previous in thread | raw e-mail | index | archive | help
 * > 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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199811080645.WAA03738>