diff options
author | Jonathan Callen <jcallen@gentoo.org> | 2010-06-16 03:36:06 +0000 |
---|---|---|
committer | Jonathan Callen <jcallen@gentoo.org> | 2010-06-16 03:36:06 +0000 |
commit | 9a1cefcc973cf6e8bd1ae0bdb8092d5290ed1372 (patch) | |
tree | b403e1dd47c796d112db483bfa3f7740d4589776 /eclass/sgml-catalog.eclass | |
parent | whitespace (diff) | |
download | historical-9a1cefcc973cf6e8bd1ae0bdb8092d5290ed1372.tar.gz historical-9a1cefcc973cf6e8bd1ae0bdb8092d5290ed1372.tar.bz2 historical-9a1cefcc973cf6e8bd1ae0bdb8092d5290ed1372.zip |
Remove extra slash in catalogs
Diffstat (limited to 'eclass/sgml-catalog.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() { |