diff options
author | Alexis Ballier <aballier@gentoo.org> | 2010-01-08 15:19:20 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2010-01-08 15:19:20 +0000 |
commit | 76cc1e6a6a2fb370c023079d918a18aedb548858 (patch) | |
tree | 273b1be55dee39d9d0d09b49acae5cb87a79d520 /eclass/texlive-common.eclass | |
parent | Version bump. (diff) | |
download | gentoo-2-76cc1e6a6a2fb370c023079d918a18aedb548858.tar.gz gentoo-2-76cc1e6a6a2fb370c023079d918a18aedb548858.tar.bz2 gentoo-2-76cc1e6a6a2fb370c023079d918a18aedb548858.zip |
Add an einfo when moving config files
Diffstat (limited to 'eclass/texlive-common.eclass')
-rw-r--r-- | eclass/texlive-common.eclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/texlive-common.eclass b/eclass/texlive-common.eclass index 3057c34f4ce5..d53dca4fafae 100644 --- a/eclass/texlive-common.eclass +++ b/eclass/texlive-common.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/texlive-common.eclass,v 1.9 2008/11/06 19:51:30 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/texlive-common.eclass,v 1.10 2010/01/08 15:19:20 aballier Exp $ # @ECLASS: texlive-common.eclass # @MAINTAINER: @@ -35,6 +35,7 @@ texlive-common_handle_config_files() { continue fi dodir /etc/texmf/$(dirname ${f}).d + einfo "Moving (and symlinking) ${TEXMF_PATH}/${f} to /etc/texmf/$(dirname ${f}).d" mv "${D}/${TEXMF_PATH}/${f}" "${D}/etc/texmf/$(dirname ${f}).d" || die "mv ${f} failed." dosym /etc/texmf/$(dirname ${f}).d/$(basename ${f}) ${TEXMF_PATH}/${f} done |