dev-python/os-brick: fix installing to /usr/etc

Closes: https://bugs.gentoo.org/785472
Package-Manager: Portage-3.0.18, Repoman-3.0.2
RepoMan-Options: --force
Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
This commit is contained in:
Matthew Thode
2021-04-25 13:41:07 -05:00
parent df01212d6d
commit 617c54030b

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2020 Gentoo Authors
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -32,3 +32,8 @@ RDEPEND="
>=dev-python/tenacity-6.0.0[${PYTHON_USEDEP}]
>=dev-python/os-win-3.0.0[${PYTHON_USEDEP}]
"
python_prepare_all() {
sed -i -e 's/\tetc/\t\/etc/g' setup.cfg || die
distutils-r1_python_prepare_all
}