diff options
author | Alexis Ballier <aballier@gentoo.org> | 2010-01-09 16:01:52 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2010-01-09 16:01:52 +0000 |
commit | 04177f5a6e8cbfa0282f1bdeba814a036752af7e (patch) | |
tree | 4c97384a318d810582e7c7cc80f127ac0d1f472c /eclass | |
parent | stable x86, security bug 290660 (diff) | |
download | historical-04177f5a6e8cbfa0282f1bdeba814a036752af7e.tar.gz historical-04177f5a6e8cbfa0282f1bdeba814a036752af7e.tar.bz2 historical-04177f5a6e8cbfa0282f1bdeba814a036752af7e.zip |
no need to move texmf/doc .cnf/cfg files to /etc
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/texlive-common.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/texlive-common.eclass b/eclass/texlive-common.eclass index d53dca4fafae..ce18d4d2f367 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.10 2010/01/08 15:19:20 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/texlive-common.eclass,v 1.11 2010/01/09 16:01:52 aballier Exp $ # @ECLASS: texlive-common.eclass # @MAINTAINER: @@ -31,7 +31,7 @@ texlive-common_handle_config_files() { [ -d "${D}${TEXMF_PATH}" ] || return cd "${D}${TEXMF_PATH}" for f in $(find . -name '*.cnf' -o -name '*.cfg' -type f | sed -e "s:\./::g") ; do - if [ "${f#*config}" != "${f}" ] ; then + if [ "${f#*config}" != "${f}" -o "${f#doc}" != "${f}" ] ; then continue fi dodir /etc/texmf/$(dirname ${f}).d |