diff options
author | rillig <rillig> | 2006-11-05 08:37:04 +0000 |
---|---|---|
committer | rillig <rillig> | 2006-11-05 08:37:04 +0000 |
commit | 73359b9ff690c354fc662a7baf0e356c2b4fb77d (patch) | |
tree | de362070e2f06e12db92f5f6312cc574e462b474 | |
parent | b385e2f6000542c9ed4ec5f9c7fb86a5699455cf (diff) | |
download | pkgsrc-73359b9ff690c354fc662a7baf0e356c2b4fb77d.tar.gz |
Typo: The second MASTER_SITES definition must use the += operator
instead of =, otherwise the first one is overwritten. That's fatal,
because the GNOME sites don't have the distfile yet.
-rw-r--r-- | textproc/py-libxslt/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/textproc/py-libxslt/Makefile b/textproc/py-libxslt/Makefile index cd4c442f438..d9adcde8c46 100644 --- a/textproc/py-libxslt/Makefile +++ b/textproc/py-libxslt/Makefile @@ -1,10 +1,10 @@ -# $NetBSD: Makefile,v 1.21 2006/10/30 21:04:22 drochner Exp $ +# $NetBSD: Makefile,v 1.22 2006/11/05 08:37:04 rillig Exp $ DISTNAME= libxslt-1.1.18 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= textproc python MASTER_SITES= ftp://xmlsoft.org/libxslt/ -MASTER_SITES= ${MASTER_SITE_GNOME:=sources/libxslt/1.1/} +MASTER_SITES+= ${MASTER_SITE_GNOME:=sources/libxslt/1.1/} MAINTAINER= minskim@NetBSD.org HOMEPAGE= http://xmlsoft.org/XSLT/ |