Gentoo Archives: gentoo-commits

From: Guilherme Amadio <amadio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/faudio/
Date: Thu, 08 Aug 2019 06:41:38
Message-Id: 1565246451.90e8a784482cfff2bc780e695351a2537766a43d.amadio@gentoo
1 commit: 90e8a784482cfff2bc780e695351a2537766a43d
2 Author: Guilherme Amadio <amadio <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 8 06:40:51 2019 +0000
4 Commit: Guilherme Amadio <amadio <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 8 06:40:51 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90e8a784
7
8 app-emulation/faudio: fix typo in sed command
9
10 The second -e option was missing in the previous commit.
11
12 Package-Manager: Portage-2.3.71, Repoman-2.3.17
13 Signed-off-by: Guilherme Amadio <amadio <AT> gentoo.org>
14
15 app-emulation/faudio/faudio-19.06.ebuild | 7 ++-----
16 1 file changed, 2 insertions(+), 5 deletions(-)
17
18 diff --git a/app-emulation/faudio/faudio-19.06.ebuild b/app-emulation/faudio/faudio-19.06.ebuild
19 index 82959acb733..a8490f1cf23 100644
20 --- a/app-emulation/faudio/faudio-19.06.ebuild
21 +++ b/app-emulation/faudio/faudio-19.06.ebuild
22 @@ -70,11 +70,8 @@ multilib_src_install() {
23 # FIXME: do we want to install the FAudio tools?
24 cmake-utils_src_install
25
26 - sed -e \
27 - "s@%LIB%@$(get_libdir)@g" \
28 - "s@%PREFIX%@${EPREFIX}/usr@g" \
29 - "${FILESDIR}/faudio.pc" \
30 - > "${T}/faudio.pc" \
31 + sed -e "s@%LIB%@$(get_libdir)@g" -e "s@%PREFIX%@${EPREFIX}/usr@g" \
32 + "${FILESDIR}/faudio.pc" > "${T}/faudio.pc" \
33 || die "sed failed"
34 insinto "/usr/$(get_libdir)/pkgconfig"
35 doins "${T}/faudio.pc"