diff options
author | Alexis Ballier <aballier@gentoo.org> | 2010-10-11 20:44:19 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2010-10-11 20:44:19 +0000 |
commit | 630ab9bdf019850ce00fccef966a851c42c72f78 (patch) | |
tree | b936f01753b6b947bc9d1c9f5c667725d8296fe9 /eclass/texlive-module.eclass | |
parent | tidy (diff) | |
download | gentoo-2-630ab9bdf019850ce00fccef966a851c42c72f78.tar.gz gentoo-2-630ab9bdf019850ce00fccef966a851c42c72f78.tar.bz2 gentoo-2-630ab9bdf019850ce00fccef966a851c42c72f78.zip |
Strip \t too, one can see tlpobjs with \t in TeX Live 2010
Diffstat (limited to 'eclass/texlive-module.eclass')
-rw-r--r-- | eclass/texlive-module.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/texlive-module.eclass b/eclass/texlive-module.eclass index 7cba53f64dc3..fea8f6c8292f 100644 --- a/eclass/texlive-module.eclass +++ b/eclass/texlive-module.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-module.eclass,v 1.35 2010/10/11 18:26:33 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/texlive-module.eclass,v 1.36 2010/10/11 20:44:19 aballier Exp $ # @ECLASS: texlive-module.eclass # @MAINTAINER: @@ -205,7 +205,7 @@ texlive-module_src_compile() { # TeX Live 2007 was providing lists. For 2008 they are now tlpobj. for i in "${S}"/tlpkg/tlpobj/*; do - grep '^execute ' "${i}" | sed -e 's/^execute //' | tr ' ' '@' |sort|uniq >> "${T}/jobs" + grep '^execute ' "${i}" | sed -e 's/^execute //' | tr ' \t' '@@' |sort|uniq >> "${T}/jobs" done for i in $(<"${T}/jobs"); |