summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Turk <satai@gentoo.org>2003-02-08 03:09:16 +0000
committerMatthew Turk <satai@gentoo.org>2003-02-08 03:09:16 +0000
commit026ef035662c8fb73ba171bb7217b6a3888051c6 (patch)
treeec4020faf7e2fbc2c7c7509b429a21fd1cf63138 /eclass/latex-package.eclass
parentFixed dummy line to work properly. (diff)
downloadgentoo-2-026ef035662c8fb73ba171bb7217b6a3888051c6.tar.gz
gentoo-2-026ef035662c8fb73ba171bb7217b6a3888051c6.tar.bz2
gentoo-2-026ef035662c8fb73ba171bb7217b6a3888051c6.zip
Fixed stupid typo that reversed the order of output in einfo statements.
Diffstat (limited to 'eclass/latex-package.eclass')
-rw-r--r--eclass/latex-package.eclass8
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/latex-package.eclass b/eclass/latex-package.eclass
index 3cabc6aeee72..887871dfcbfb 100644
--- a/eclass/latex-package.eclass
+++ b/eclass/latex-package.eclass
@@ -1,7 +1,7 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# Author Matthew Turk <satai@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/eclass/latex-package.eclass,v 1.11 2002/11/05 03:58:33 satai Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/latex-package.eclass,v 1.12 2003/02/08 03:09:16 satai Exp $
#
# This eClass is designed to be easy to use and implement. The vast majority of
# LaTeX packages will only need to define SRC_URI (and sometimes S) for a
@@ -88,7 +88,7 @@ latex-package_src_doinstall() {
"tex" | "dtx")
for i in `find . -maxdepth 1 -type f -name "*.${1}"`
do
- echo "Making documentation: $i"
+ einfo "Making documentation: $i"
texi2dvi -q -c --language=latex $i &> /dev/null
done
;;
@@ -131,8 +131,8 @@ latex-package_src_compile() {
cd ${S}
for i in `find \`pwd\` -maxdepth 1 -type f -name "*.ins"`
do
- echo "Extracting from $i"
- latex --interaction=batchmode $i > /dev/null
+ einfo "Extracting from $i"
+ latex --interaction=batchmode $i &> /dev/null
done
}