diff options
author | maya <maya@pkgsrc.org> | 2017-03-02 20:09:32 +0000 |
---|---|---|
committer | maya <maya@pkgsrc.org> | 2017-03-02 20:09:32 +0000 |
commit | 18acf6e6cdc5e9a44b42ac61a01d3bde32d85d9e (patch) | |
tree | a01924e4fb544deb527022efe9053c7084bda560 /sysutils | |
parent | 8514662f0c699cde5078649041fd08316f4252e6 (diff) | |
download | pkgsrc-18acf6e6cdc5e9a44b42ac61a01d3bde32d85d9e.tar.gz |
pciutils: fix checksum mismatch.
the file on kernel.org has a different checksum from other mirrors.
(contents don't appear different)
because ftp.kernel.org went down, we were not fetching it, which resulted
in a mismatch.
switch to http @ kernel.org. now the first mirror will have a mismatched
checksum, but the second won't.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/pciutils/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysutils/pciutils/Makefile b/sysutils/pciutils/Makefile index 04d61f0113c..4aee42166d9 100644 --- a/sysutils/pciutils/Makefile +++ b/sysutils/pciutils/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.35 2017/02/26 06:44:17 msaitoh Exp $ +# $NetBSD: Makefile,v 1.36 2017/03/02 20:09:32 maya Exp $ DISTNAME= pciutils-3.5.4 CATEGORIES= sysutils MASTER_SITES= ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/ -MASTER_SITES+= ftp://ftp.kernel.org/pub/software/utils/pciutils/ +MASTER_SITES+= http://kernel.org/pub/software/utils/pciutils/ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://mj.ucw.cz/pciutils.shtml |