diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-08-14 00:25:47 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-08-14 00:25:47 -0400 |
commit | 277e7459431372a97fd791217d85cd5f62e99e7f (patch) | |
tree | 2433b95853e435b66f8cd0d480ca4a8932adba07 /app-portage | |
parent | app-portage/eclass-manpages: pass up exit codes to the caller (diff) | |
download | gentoo-277e7459431372a97fd791217d85cd5f62e99e7f.tar.gz gentoo-277e7459431372a97fd791217d85cd5f62e99e7f.tar.bz2 gentoo-277e7459431372a97fd791217d85cd5f62e99e7f.zip |
app-portage/eclass-manpages: fail when there are errors in eclass docs
This will get people to file bugs when developers break the documentation.
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/eclass-manpages/eclass-manpages-20150814.ebuild | 4 |
1 files 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 44353c2dd4c2..60d49d8337a6 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() { |