diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-02-13 11:41:05 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-02-13 11:42:02 +0100 |
commit | c93dbf15a04101056c9bcbc62e3c12bdd6d21b8b (patch) | |
tree | 46516b0a6e0748ce47e085b250851432252bb7cd /dev-python/twisted | |
parent | app-portage/overlint: Remove old (py2) (diff) | |
download | gentoo-c93dbf15a04101056c9bcbc62e3c12bdd6d21b8b.tar.gz gentoo-c93dbf15a04101056c9bcbc62e3c12bdd6d21b8b.tar.bz2 gentoo-c93dbf15a04101056c9bcbc62e3c12bdd6d21b8b.zip |
dev-python/twisted: Fix stray % in var refs
Closes: https://bugs.gentoo.org/709470
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/twisted')
-rw-r--r-- | dev-python/twisted/twisted-19.10.0.ebuild | 4 |
1 files 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(){ |