commit: c93dbf15a04101056c9bcbc62e3c12bdd6d21b8b Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Thu Feb 13 10:41:05 2020 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Thu Feb 13 10:42:02 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c93dbf15
dev-python/twisted: Fix stray % in var refs Closes: https://bugs.gentoo.org/709470 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> 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 6491d91917f..6de8b0c43fb 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(){
