diff options
author | 2011-08-12 16:14:55 +0000 | |
---|---|---|
committer | 2011-08-12 16:14:55 +0000 | |
commit | 6e4dad2ea3db0399dccc41f319e41454d3c492ba (patch) | |
tree | 082ee3f2d7b59c1f54b684f87b6881da6a7bb432 /eclass | |
parent | ppc stable wrt #333627 (diff) | |
download | gentoo-2-6e4dad2ea3db0399dccc41f319e41454d3c492ba.tar.gz gentoo-2-6e4dad2ea3db0399dccc41f319e41454d3c492ba.tar.bz2 gentoo-2-6e4dad2ea3db0399dccc41f319e41454d3c492ba.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 |