From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 3CC8358973 for ; Fri, 29 Jan 2016 07:03:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 80275E0853; Fri, 29 Jan 2016 07:03:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 06029E0853 for ; Fri, 29 Jan 2016 07:03:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B50C9340C31 for ; Fri, 29 Jan 2016 07:03:54 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A60E68EB for ; Fri, 29 Jan 2016 07:03:51 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1454050975.874af19749a53a0c21443b06a73dab38d135a518.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/latex-package.eclass X-VCS-Directories: eclass/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 874af19749a53a0c21443b06a73dab38d135a518 X-VCS-Branch: master Date: Fri, 29 Jan 2016 07:03:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b0ce823c-016c-4628-bd5f-80afb038b7c7 X-Archives-Hash: ad84b8440f592f8c7dea5ba524b319cf commit: 874af19749a53a0c21443b06a73dab38d135a518 Author: Ulrich Müller gentoo org> AuthorDate: Wed Jan 27 16:21:21 2016 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Fri Jan 29 07:02:55 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=874af197 latex-package.eclass: Add some die commands. eclass/latex-package.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/latex-package.eclass b/eclass/latex-package.eclass index 92fc532..01815ce 100644 --- a/eclass/latex-package.eclass +++ b/eclass/latex-package.eclass @@ -120,7 +120,7 @@ latex-package_src_doinstall() { for i in `find . -maxdepth 1 -type f -name "*.${1}"` do einfo "Making documentation: $i" - texi2dvi -q -c --language=latex $i &> /dev/null + texi2dvi -q -c --language=latex $i &> /dev/null || die done ;; "tfm" | "vf" | "afm") @@ -180,7 +180,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 + latex --interaction=batchmode $i &> /dev/null || die done }