Date: Mon, 21 Aug 2006 22:51:44 +0100 From: Shaun Amott <shaun@FreeBSD.org> To: Jona Joachim <jaj13@web.de> Cc: freebsd-ports@FreeBSD.org Subject: Re: Troubles with MASTER_SITES Message-ID: <20060821215144.GA2649@picobyte.net> In-Reply-To: <44EA14CA.7070604@web.de> References: <44EA14CA.7070604@web.de>
next in thread | previous in thread | raw e-mail | index | archive | help
--2oS5YaxWCcQjTEyO Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 21, 2006 at 10:17:14PM +0200, Jona Joachim wrote: >=20 > I must be missing something obvious with MASTER_SITES. > If you consider the devel/tigcc port which I maintain you can read: >=20 > MASTER_SITES=3D ${MASTER_SITE_GCC}:gcc \ > ${MASTER_SITE_GNU}:gas \ The problem is that you are taking the value of ${MASTER_SITE_xxx} and sticking the site-group on the end - i.e., on the last site in either group. To fix this, change the above lines to: MASTER_SITES=3D ${MASTER_SITE_GCC:S/$/:gcc/} \ ${MASTER_SITE_GNU:S/$/:gas/} \ This will attach :gcc and :gas to the end of each individual site. --=20 Shaun Amott [ PGP: 0x6B387A9A ] Scientia Est Potentia. --2oS5YaxWCcQjTEyO Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFE6irwkmhdCGs4epoRAnxtAJoDMrw5bczHSJCScIBVZOvYyJUpmwCeLH1t z9AMgqMfJ7EiRZ43G3B+Nxk= =eTCq -----END PGP SIGNATURE----- --2oS5YaxWCcQjTEyO--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20060821215144.GA2649>