diff options
author | Fabian Groffen <grobian@gentoo.org> | 2018-02-10 16:26:07 +0100 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2018-02-10 16:26:22 +0100 |
commit | 9f702f98e2f275757dcce36d14387f3754405709 (patch) | |
tree | 39b6deeca1c3eb478c234b0d1a27bbab23df913a /mail-client | |
parent | dev-libs/libpqxx: stable 6.0.0 for ia64, bug #641128 (diff) | |
download | gentoo-9f702f98e2f275757dcce36d14387f3754405709.tar.gz gentoo-9f702f98e2f275757dcce36d14387f3754405709.tar.bz2 gentoo-9f702f98e2f275757dcce36d14387f3754405709.zip |
mail-client/mutt: add some || die()s, thanks jer, bug #647182
Bug: https://bugs.gentoo.org/647182
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'mail-client')
-rw-r--r-- | mail-client/mutt/mutt-1.9.3.ebuild | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/mail-client/mutt/mutt-1.9.3.ebuild b/mail-client/mutt/mutt-1.9.3.ebuild index ec439e843267..8e0ba27771fc 100644 --- a/mail-client/mutt/mutt-1.9.3.ebuild +++ b/mail-client/mutt/mutt-1.9.3.ebuild @@ -114,8 +114,7 @@ src_prepare() { # the configure script contains some "cleverness" whether or not to setgid # the dotlock program, resulting in bugs like #278332 - sed -i -e 's/@DOTLOCK_GROUP@//' \ - Makefile.in || die "sed failed" + sed -i -e 's/@DOTLOCK_GROUP@//' Makefile.in || die "sed failed" } src_configure() { @@ -229,8 +228,8 @@ src_install() { -e 's#in @docdir@,#at http://www.mutt.org/,#' \ -e "s#@sysconfdir@#${EPREFIX}/etc/${PN}#" \ -e "s#@bindir@#${EPREFIX}/usr/bin#" \ - doc/mutt.man > mutt.1 - cp doc/muttrc.man muttrc.5 + doc/mutt.man > mutt.1 || die + cp doc/muttrc.man muttrc.5 || die doman mutt.1 muttrc.5 else # nuke manpages that should be provided by an MTA, bug #177605 |