diff options
author | Sven Wegener <swegener@gentoo.org> | 2017-12-14 07:32:44 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2017-12-14 07:32:44 +0000 |
commit | 76bfa8504e0cdead9c3689cbda73213743178a3f (patch) | |
tree | dd1222bebd551b5df79f599731b1d37781a54d2a /dev-libs/libbytesize | |
parent | app-crypt/libu2f-host: amd64 stable bug 602198 (diff) | |
download | gentoo-76bfa8504e0cdead9c3689cbda73213743178a3f.tar.gz gentoo-76bfa8504e0cdead9c3689cbda73213743178a3f.tar.bz2 gentoo-76bfa8504e0cdead9c3689cbda73213743178a3f.zip |
dev-libs/libbytesize: optimize python modules
Package-Manager: Portage-2.3.14, Repoman-2.3.6
Diffstat (limited to 'dev-libs/libbytesize')
-rw-r--r-- | dev-libs/libbytesize/libbytesize-1.2-r1.ebuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/dev-libs/libbytesize/libbytesize-1.2-r1.ebuild b/dev-libs/libbytesize/libbytesize-1.2-r1.ebuild index 132da45acc0f..2dc795777df3 100644 --- a/dev-libs/libbytesize/libbytesize-1.2-r1.ebuild +++ b/dev-libs/libbytesize/libbytesize-1.2-r1.ebuild @@ -52,5 +52,10 @@ src_configure() { src_install() { emake install DESTDIR="${D}" - python_foreach_impl emake -C src/python install DESTDIR="${D}" + + python_install() { + emake -C src/python install DESTDIR="${D}" + python_optimize + } + python_foreach_impl python_install } |