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 138661397D4 for ; Fri, 14 Aug 2015 04:26:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BC3451428F; Fri, 14 Aug 2015 04:26:34 +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 48F461428F for ; Fri, 14 Aug 2015 04:26:34 +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 349FD3408A2 for ; Fri, 14 Aug 2015 04:26:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6973614F for ; Fri, 14 Aug 2015 04:26:31 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1439526347.277e7459431372a97fd791217d85cd5f62e99e7f.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/eclass-manpages/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/eclass-manpages/eclass-manpages-20150814.ebuild X-VCS-Directories: app-portage/eclass-manpages/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 277e7459431372a97fd791217d85cd5f62e99e7f X-VCS-Branch: master Date: Fri, 14 Aug 2015 04:26:31 +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: 4dbcc5f0-12d8-4a06-9b5c-551dc332b977 X-Archives-Hash: 9c1b6120d14546bc3793fcefff923701 commit: 277e7459431372a97fd791217d85cd5f62e99e7f Author: Mike Frysinger gentoo org> AuthorDate: Fri Aug 14 04:25:47 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Fri Aug 14 04:25:47 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=277e7459 app-portage/eclass-manpages: fail when there are errors in eclass docs This will get people to file bugs when developers break the documentation. app-portage/eclass-manpages/eclass-manpages-20150814.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-portage/eclass-manpages/eclass-manpages-20150814.ebuild b/app-portage/eclass-manpages/eclass-manpages-20150814.ebuild index 44353c2..60d49d8 100644 --- a/app-portage/eclass-manpages/eclass-manpages-20150814.ebuild +++ b/app-portage/eclass-manpages/eclass-manpages-20150814.ebuild @@ -30,9 +30,9 @@ src_compile() { for o in ${PORTDIR_OVERLAY} ; do e="${o}/eclass" [[ -d ${e} ]] || continue - genit "${e}" + genit "${e}" || die done - genit + genit || die } src_install() {