summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2017-06-14 12:47:42 +0200
committerAlexis Ballier <aballier@gentoo.org>2017-06-14 12:47:50 +0200
commitd0a1c98f515946c72e4cb43840f3d5dcbf7b2172 (patch)
tree7c76b0171b2cac3d543fb1f5feac554b8c835c6a /eclass
parentdev-perl/Audio-FLAC-Header: Fix for '.' in @INC re bug #614662 (diff)
downloadgentoo-d0a1c98f515946c72e4cb43840f3d5dcbf7b2172.tar.gz
gentoo-d0a1c98f515946c72e4cb43840f3d5dcbf7b2172.tar.bz2
gentoo-d0a1c98f515946c72e4cb43840f3d5dcbf7b2172.zip
latex-package.eclass: Drop redicting output to /dev/null for latex commands.
Most people dont display build log to the terminal anymore and having this output in the logs is mandatory for understanding bugs.
Diffstat (limited to '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 67f23d084393..95d98e673700 100644
--- a/eclass/latex-package.eclass
+++ b/eclass/latex-package.eclass
@@ -139,11 +139,11 @@ latex-package_src_doinstall() {
do
[ -n "${LATEX_PACKAGE_SKIP}" ] && has ${i##*/} ${LATEX_PACKAGE_SKIP} && continue
einfo "Making documentation: $i"
- if pdflatex ${LATEX_DOC_ARGUMENTS} --interaction=batchmode $i &> /dev/null ; then
- pdflatex ${LATEX_DOC_ARGUMENTS} --interaction=batchmode $i &> /dev/null || die
+ if pdflatex ${LATEX_DOC_ARGUMENTS} --interaction=batchmode $i ; then
+ pdflatex ${LATEX_DOC_ARGUMENTS} --interaction=batchmode $i || die
else
einfo "pdflatex failed, trying texi2dvi"
- texi2dvi -q -c --language=latex $i &> /dev/null || die
+ texi2dvi -q -c --language=latex $i || die
fi
done
fi
@@ -205,7 +205,7 @@ latex-package_src_compile() {
for i in `find \`pwd\` -maxdepth 1 -type f -name "*.ins"`
do
einfo "Extracting from $i"
- latex --interaction=batchmode $i &> /dev/null || die
+ latex --interaction=batchmode $i || die
done
}