From 60cbbacd3923d6c7d3ee41128ec094f7f18c656a Mon Sep 17 00:00:00 2001 From: Alexander Leidinger Date: Tue, 25 May 2004 10:16:16 +0000 Subject: [PATCH] Add "fetchindex" target. It fetches the recent index file (INDEX _or_ INDEX-5). A note about the implementation: I had to add the call to chmod to make the index file readable to everyone. I'm a little bit surprised by this, since my umask is 022. Either fetch(1) doesn't respect the umask or it mirrors the permissions too (I haven't investigated this). Both possibilities aren't documented in the man-page. Approved by: kris (previous version without the chmod) --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 60d95f817bdb..6dabf0719bfe 100644 --- a/Makefile +++ b/Makefile @@ -70,6 +70,9 @@ index: @rm -f ${.CURDIR}/${INDEXFILE} @cd ${.CURDIR} && make ${.CURDIR}/${INDEXFILE} +fetchindex: + @cd ${.CURDIR} && fetch -am http://www.FreeBSD.org/ports/${INDEXFILE} && chmod a+r ${INDEXFILE} + INDEX_JOBS?= 2 ${.CURDIR}/${INDEXFILE}: