diff options
author | Torsten Veller <tove@gentoo.org> | 2009-11-10 12:53:53 +0000 |
---|---|---|
committer | Torsten Veller <tove@gentoo.org> | 2009-11-10 12:53:53 +0000 |
commit | b3ade168d304e0004d9650ae37cad583dc2a186e (patch) | |
tree | f2cf8a358575eefd905c25070ddd719a30cb5f9b /eclass | |
parent | Removed gsynaptics, ksynaptics and libsynaptics from tree. Replaced by kcm_to... (diff) | |
download | historical-b3ade168d304e0004d9650ae37cad583dc2a186e.tar.gz historical-b3ade168d304e0004d9650ae37cad583dc2a186e.tar.bz2 historical-b3ade168d304e0004d9650ae37cad583dc2a186e.zip |
Add trailing slash to HOMEPAGE link (#292268)
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/perl-module.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/perl-module.eclass b/eclass/perl-module.eclass index 91615dc84a91..3b5267d8914b 100644 --- a/eclass/perl-module.eclass +++ b/eclass/perl-module.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.117 2009/09/27 07:00:32 tove Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/perl-module.eclass,v 1.118 2009/11/10 12:53:53 tove Exp $ # # Author: Seemant Kulleen <seemant@gentoo.org> @@ -45,7 +45,7 @@ LICENSE="${LICENSE:-|| ( Artistic GPL-2 )}" [[ -z "${SRC_URI}" && -n "${MODULE_AUTHOR}" ]] && \ SRC_URI="mirror://cpan/authors/id/${MODULE_AUTHOR:0:1}/${MODULE_AUTHOR:0:2}/${MODULE_AUTHOR}/${MODULE_SECTION}/${MODULE_A}" [[ -z "${HOMEPAGE}" ]] && \ - HOMEPAGE="http://search.cpan.org/dist/${MY_PN:-${PN}}" + HOMEPAGE="http://search.cpan.org/dist/${MY_PN:-${PN}}/" SRC_PREP="no" SRC_TEST="skip" |