diff options
author | Jonathan Callen <abcd@gentoo.org> | 2010-06-16 03:36:06 +0000 |
---|---|---|
committer | Jonathan Callen <abcd@gentoo.org> | 2010-06-16 03:36:06 +0000 |
commit | 3db66f465b986adda50bb78cca2096dcfd5caec6 (patch) | |
tree | 4dea1af21615822c2352b4a28ad8d8e04090c06c /eclass | |
parent | whitespace (diff) | |
download | gentoo-2-3db66f465b986adda50bb78cca2096dcfd5caec6.tar.gz gentoo-2-3db66f465b986adda50bb78cca2096dcfd5caec6.tar.bz2 gentoo-2-3db66f465b986adda50bb78cca2096dcfd5caec6.zip |
Remove extra slash in catalogs
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/sgml-catalog.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/sgml-catalog.eclass b/eclass/sgml-catalog.eclass index e59257efe120..af29075c0866 100644 --- a/eclass/sgml-catalog.eclass +++ b/eclass/sgml-catalog.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/sgml-catalog.eclass,v 1.15 2010/05/13 21:38:11 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/sgml-catalog.eclass,v 1.16 2010/06/16 03:36:06 abcd Exp $ # # Author Matthew Turk <satai@gentoo.org> @@ -21,13 +21,13 @@ sgml-catalog_cat_include() { sgml-catalog_cat_doinstall() { debug-print function $FUNCNAME $* has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= - "${EPREFIX}"/usr/bin/install-catalog --add "${EPREFIX}/$1" "${EPREFIX}/$2" &>/dev/null + "${EPREFIX}"/usr/bin/install-catalog --add "${EPREFIX}$1" "${EPREFIX}$2" &>/dev/null } sgml-catalog_cat_doremove() { debug-print function $FUNCNAME $* has "${EAPI:-0}" 0 1 2 && ! use prefix && EPREFIX= - "${EPREFIX}"/usr/bin/install-catalog --remove "${EPREFIX}/$1" "${EPREFIX}/$2" &>/dev/null + "${EPREFIX}"/usr/bin/install-catalog --remove "${EPREFIX}$1" "${EPREFIX}$2" &>/dev/null } sgml-catalog_pkg_postinst() { |