diff options
-rw-r--r-- | sys-cluster/ceph/ceph-18.2.1.ebuild | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys-cluster/ceph/ceph-18.2.1.ebuild b/sys-cluster/ceph/ceph-18.2.1.ebuild index 3e68bf06a4e7..e7b7cdfc84ec 100644 --- a/sys-cluster/ceph/ceph-18.2.1.ebuild +++ b/sys-cluster/ceph/ceph-18.2.1.ebuild @@ -414,6 +414,9 @@ src_install() { python_setup cmake_src_install + + # the cmake_src_install here installs more egg-info files + rm -rf "${D}/$(python_get_sitedir)"/*.egg-info || die python_optimize find "${ED}" -name '*.la' -type f -delete || die @@ -472,6 +475,8 @@ python_install() { DESTDIR="${ED}" cmake_build src/pybind/install DESTDIR="${ED}" cmake_build src/cephadm/install + rm -rf "${D}/$(python_get_sitedir)"/*.egg-info || die + python_optimize } |