diff options
author | sketch <sketch@pkgsrc.org> | 2007-02-09 15:33:19 +0000 |
---|---|---|
committer | sketch <sketch@pkgsrc.org> | 2007-02-09 15:33:19 +0000 |
commit | b1e755661425d8164e9681dd54663caf218c11c7 (patch) | |
tree | 21087678ddb8453de5653cac4c237073bc8a26b1 /mk/fetch | |
parent | ece30012c519613103c5e35664523d39a60141b4 (diff) | |
download | pkgsrc-b1e755661425d8164e9681dd54663caf218c11c7.tar.gz |
The HTTP interface to ftp.fi.netbsd.org has a nasty 404 handler which results
in missing distfiles retrieving www.nic.funet.fi.file_not_found.html instead
of failing and carrying on to the next site.
Use FTP instead which does the right thing.
Diffstat (limited to 'mk/fetch')
-rw-r--r-- | mk/fetch/sites.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/fetch/sites.mk b/mk/fetch/sites.mk index 0f7a91bcfac..60a58c8cbd5 100644 --- a/mk/fetch/sites.mk +++ b/mk/fetch/sites.mk @@ -1,4 +1,4 @@ -# $NetBSD: sites.mk,v 1.20 2007/01/27 06:32:37 wiz Exp $ +# $NetBSD: sites.mk,v 1.21 2007/02/09 15:33:19 sketch Exp $ # # This Makefile fragment defines read-only MASTER_SITE_* variables # representing some well-known master distribution sites for software. @@ -439,7 +439,7 @@ MASTER_SITE_FREEBSD_LOCAL+= \ # The primary backup site. MASTER_SITE_BACKUP?= \ - http://ftp.fi.NetBSD.org/pub/NetBSD/packages/distfiles/ \ + ftp://ftp.fi.NetBSD.org/pub/NetBSD/packages/distfiles/ \ ftp://ftp.NetBSD.org/pub/NetBSD/packages/distfiles/ \ http://ftp.NetBSD.org/pub/NetBSD/packages/distfiles/ \ ftp://ftp.FreeBSD.org/pub/FreeBSD/distfiles/ |