Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/toxic/
Date: Sat, 02 Jan 2021 00:49:44
Message-Id: 1609548568.6619fac664fc1828a65db3d0b0fd9ff183b1f316.sam@gentoo
1 commit: 6619fac664fc1828a65db3d0b0fd9ff183b1f316
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 2 00:49:28 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 2 00:49:28 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6619fac6
7
8 net-im/toxic: fix unquoted ${ED}
9
10 Package-Manager: Portage-3.0.12-prefix, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 net-im/toxic/toxic-0.10.0-r1.ebuild | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16 diff --git a/net-im/toxic/toxic-0.10.0-r1.ebuild b/net-im/toxic/toxic-0.10.0-r1.ebuild
17 index d8edefaf923..904924719e8 100644
18 --- a/net-im/toxic/toxic-0.10.0-r1.ebuild
19 +++ b/net-im/toxic/toxic-0.10.0-r1.ebuild
20 @@ -102,6 +102,6 @@ src_configure() {
21 src_install() {
22 default
23 if ! use audio-notify; then
24 - rm -r ${ED}/usr/share/${PN}/sounds || die "Could not remove sounds directory"
25 + rm -r "${ED}"/usr/share/${PN}/sounds || die "Could not remove sounds directory"
26 fi
27 }