commit: bc10bda2533efa7dd1a343eb963dfd3352e38cab
Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 9 13:17:09 2016 +0000
Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Feb 9 13:17:09 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc10bda2
eclass/latex-package.eclass: drop useless `` around pdflatex call
eclass/latex-package.eclass | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/eclass/latex-package.eclass b/eclass/latex-package.eclass
index 030c899..1711101 100644
--- a/eclass/latex-package.eclass
+++ b/eclass/latex-package.eclass
@@ -128,7 +128,7 @@ latex-package_src_doinstall() {
for i in `find . -maxdepth 1 -type f
-name "*.${1}"`
do
einfo "Making documentation: $i"
- if `pdflatex
--interaction=batchmode $i &> /dev/null` ; then
+ if pdflatex
--interaction=batchmode $i &> /dev/null ; then
pdflatex
--interaction=batchmode $i &> /dev/null || die
else
einfo "pdflatex failed,
trying texi2dvi"