diff options
author | pav <pav@FreeBSD.org> | 2004-11-15 21:05:18 +0000 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2004-11-15 21:05:18 +0000 |
commit | 9cf5900d15a4424a323399bfd47ed3c21c9d8bff (patch) | |
tree | 06da1ed197bcb55de612c70dec378166061ee0ff /Makefile | |
parent | c673285cc5508ad66b468a28038ab22d5a33c0dd (diff) | |
download | FreeBSD-ports-9cf5900d15a4424a323399bfd47ed3c21c9d8bff.zip FreeBSD-ports-9cf5900d15a4424a323399bfd47ed3c21c9d8bff.tar.gz |
- In fetchindex target:
Fetch bzip2 compressed copy of INDEX and decompress locally. This should
cut down both time and bandwidth.
Approved by: kris (portmgr hat)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -71,7 +71,7 @@ index: @cd ${.CURDIR} && make ${.CURDIR}/${INDEXFILE} fetchindex: - @cd ${.CURDIR} && fetch -am http://www.FreeBSD.org/ports/${INDEXFILE} && chmod a+r ${INDEXFILE} + @cd ${.CURDIR} && fetch -am http://www.FreeBSD.org/ports/${INDEXFILE}.bz2 && bunzip2 -f ${INDEXFILE}.bz2 && chmod a+r ${INDEXFILE} INDEX_JOBS?= 2 |