diff options
author | 2010-01-09 16:03:22 +0000 | |
---|---|---|
committer | 2010-01-09 16:03:22 +0000 | |
commit | 21f84d83dcc32a4070ab99b7b70009d5659e9a38 (patch) | |
tree | 94ada11857c37a2e6b93df22b5eb2b29f34aa630 /eclass/texlive-common.eclass | |
parent | stable x86, bug 299214 (diff) | |
download | gentoo-2-21f84d83dcc32a4070ab99b7b70009d5659e9a38.tar.gz gentoo-2-21f84d83dcc32a4070ab99b7b70009d5659e9a38.tar.bz2 gentoo-2-21f84d83dcc32a4070ab99b7b70009d5659e9a38.zip |
we want to move files only, really
Diffstat (limited to 'eclass/texlive-common.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 ce18d4d2f367..e9f232265a61 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.11 2010/01/09 16:01:52 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/texlive-common.eclass,v 1.12 2010/01/09 16:03:22 aballier Exp $ # @ECLASS: texlive-common.eclass # @MAINTAINER: @@ -30,7 +30,7 @@ texlive-common_handle_config_files() { # Handle config files properly [ -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 + for f in $(find . -name '*.cnf' -type f -o -name '*.cfg' -type f | sed -e "s:\./::g") ; do if [ "${f#*config}" != "${f}" -o "${f#doc}" != "${f}" ] ; then continue fi |