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 | 3a6a9cca65f88135866f1e9b1f876ff4f9249310 (patch) | |
tree | ecd7d3e17a3de5b51bca04dfeea565ed1e041314 /eclass/texlive-module.eclass | |
parent | tidy (diff) | |
download | historical-3a6a9cca65f88135866f1e9b1f876ff4f9249310.tar.gz historical-3a6a9cca65f88135866f1e9b1f876ff4f9249310.tar.bz2 historical-3a6a9cca65f88135866f1e9b1f876ff4f9249310.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"); |