summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2010-10-11 20:44:19 +0000
committerAlexis Ballier <aballier@gentoo.org>2010-10-11 20:44:19 +0000
commit3a6a9cca65f88135866f1e9b1f876ff4f9249310 (patch)
treeecd7d3e17a3de5b51bca04dfeea565ed1e041314 /eclass/texlive-module.eclass
parenttidy (diff)
downloadhistorical-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.eclass4
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");