Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/cvoicecontrol/
Date: Mon, 28 May 2018 23:02:31
Message-Id: 1527548520.510892c98850900460fcc2c4651096e70e024b06.bman@gentoo
1 commit: 510892c98850900460fcc2c4651096e70e024b06
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 28 16:47:37 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Mon May 28 23:02:00 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=510892c9
7
8 media-sound/cvoicecontrol: add || die to sed calls
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 media-sound/cvoicecontrol/cvoicecontrol-0.9_alpha-r1.ebuild | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/media-sound/cvoicecontrol/cvoicecontrol-0.9_alpha-r1.ebuild b/media-sound/cvoicecontrol/cvoicecontrol-0.9_alpha-r1.ebuild
16 index 4190a996f9a..5aed9949653 100644
17 --- a/media-sound/cvoicecontrol/cvoicecontrol-0.9_alpha-r1.ebuild
18 +++ b/media-sound/cvoicecontrol/cvoicecontrol-0.9_alpha-r1.ebuild
19 @@ -20,9 +20,9 @@ PATCHES=( "${FILESDIR}/${P}-gentoo-2.patch" )
20
21 src_prepare() {
22 default
23 - sed -i -e "s/install-data-am: install-data-local/install-data-am:/" Makefile.in
24 + sed -i -e "s/install-data-am: install-data-local/install-data-am:/" Makefile.in || die "sed failed"
25 # Handle documentation with dohtml instead.
26 - sed -i -e "s:SUBDIRS = docs:#SUBDIRS = docs:" cvoicecontrol/Makefile.in
27 + sed -i -e "s:SUBDIRS = docs:#SUBDIRS = docs:" cvoicecontrol/Makefile.in || die "sed #2 failed"
28 }
29
30 src_install () {