From c93dbf15a04101056c9bcbc62e3c12bdd6d21b8b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20G=C3=B3rny?= Date: Thu, 13 Feb 2020 11:41:05 +0100 Subject: [PATCH] dev-python/twisted: Fix stray % in var refs MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Closes: https://bugs.gentoo.org/709470 Signed-off-by: Michał Górny --- dev-python/twisted/twisted-19.10.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/twisted/twisted-19.10.0.ebuild b/dev-python/twisted/twisted-19.10.0.ebuild index 6491d91917f8..6de8b0c43fb5 100644 --- a/dev-python/twisted/twisted-19.10.0.ebuild +++ b/dev-python/twisted/twisted-19.10.0.ebuild @@ -127,7 +127,7 @@ python_test() { python_install() { distutils-r1_python_install - cd "${D%}$(python_get_sitedir)" || die + cd "${D}$(python_get_sitedir)" || die # own the dropin.cache so we don't leave orphans touch twisted/plugins/dropin.cache || die @@ -162,7 +162,7 @@ pkg_postinst() { } python_postrm() { - rm -f "${ROOT%}$(python_get_sitedir)/twisted/plugins/dropin.cache" || die + rm -f "${ROOT}$(python_get_sitedir)/twisted/plugins/dropin.cache" || die } pkg_postrm(){ -- 2.26.2