diff options
author | Ulrich Müller <ulm@gentoo.org> | 2011-08-12 16:14:55 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2011-08-12 16:14:55 +0000 |
commit | 4d3a3b0464b91b95154d65d01fb2bb4605610999 (patch) | |
tree | 476b45584f6130091625148180bf9870ac1b986d /eclass | |
parent | ppc stable wrt #333627 (diff) | |
download | historical-4d3a3b0464b91b95154d65d01fb2bb4605610999.tar.gz historical-4d3a3b0464b91b95154d65d01fb2bb4605610999.tar.bz2 historical-4d3a3b0464b91b95154d65d01fb2bb4605610999.zip |
Sync elisp.eclass from Emacs overlay (revision 1646):
Fix installation of Info files if Texinfo source is in a subdirectory,
bug 373741.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/elisp.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/elisp.eclass b/eclass/elisp.eclass index 5ed3b0366bc3..cb85bd727902 100644 --- a/eclass/elisp.eclass +++ b/eclass/elisp.eclass @@ -1,11 +1,11 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.48 2011/02/07 21:48:53 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.49 2011/08/12 16:14:55 ulm Exp $ # # Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org> # Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com> # Copyright 2007-2010 Christian Faulhammer <fauli@gentoo.org> -# Copyright 2007-2010 Ulrich Müller <ulm@gentoo.org> +# Copyright 2007-2011 Ulrich Müller <ulm@gentoo.org> # # @ECLASS: elisp.eclass # @MAINTAINER: @@ -155,6 +155,7 @@ elisp_src_install() { fi if [ -n "${ELISP_TEXINFO}" ]; then set -- ${ELISP_TEXINFO} + set -- ${@##*/} doinfo ${@/%.*/.info*} || die fi if [ -n "${DOCS}" ]; then |