diff options
author | Sam James <sam@gentoo.org> | 2021-01-02 00:49:28 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-01-02 00:49:28 +0000 |
commit | 6619fac664fc1828a65db3d0b0fd9ff183b1f316 (patch) | |
tree | 1fdc64fe65f91f08eb41eb55d9ef02ef00fb36ba /net-im/toxic | |
parent | net-im/toxic: revbump for libconfig (and other) subslot deps (diff) | |
download | gentoo-6619fac664fc1828a65db3d0b0fd9ff183b1f316.tar.gz gentoo-6619fac664fc1828a65db3d0b0fd9ff183b1f316.tar.bz2 gentoo-6619fac664fc1828a65db3d0b0fd9ff183b1f316.zip |
net-im/toxic: fix unquoted ${ED}
Package-Manager: Portage-3.0.12-prefix, Repoman-3.0.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-im/toxic')
-rw-r--r-- | net-im/toxic/toxic-0.10.0-r1.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net-im/toxic/toxic-0.10.0-r1.ebuild b/net-im/toxic/toxic-0.10.0-r1.ebuild index d8edefaf923a..904924719e8f 100644 --- a/net-im/toxic/toxic-0.10.0-r1.ebuild +++ b/net-im/toxic/toxic-0.10.0-r1.ebuild @@ -102,6 +102,6 @@ src_configure() { src_install() { default if ! use audio-notify; then - rm -r ${ED}/usr/share/${PN}/sounds || die "Could not remove sounds directory" + rm -r "${ED}"/usr/share/${PN}/sounds || die "Could not remove sounds directory" fi } |