diff options
author | Guilherme Amadio <amadio@gentoo.org> | 2019-10-22 10:18:33 +0200 |
---|---|---|
committer | Guilherme Amadio <amadio@gentoo.org> | 2019-10-22 10:24:30 +0200 |
commit | 33d249d4b12616985c6b3b67d484e989827de983 (patch) | |
tree | 2248fc799e71be34b2bff9404daf34ab30aa47a9 | |
parent | dev-libs/openssl-compat: Block dev-libs/openssl:1.0.0 (diff) | |
download | gentoo-33d249d4b12616985c6b3b67d484e989827de983.tar.gz gentoo-33d249d4b12616985c6b3b67d484e989827de983.tar.bz2 gentoo-33d249d4b12616985c6b3b67d484e989827de983.zip |
sys-apps/dstat: fix src_install() for prefix
Using 'default' as done in the version bump made files get
installed outside the prefix, directly into /usr.
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Guilherme Amadio <amadio@gentoo.org>
-rw-r--r-- | sys-apps/dstat/dstat-0.7.4.ebuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys-apps/dstat/dstat-0.7.4.ebuild b/sys-apps/dstat/dstat-0.7.4.ebuild index 66bbf59ec4a3..491efbdb32a4 100644 --- a/sys-apps/dstat/dstat-0.7.4.ebuild +++ b/sys-apps/dstat/dstat-0.7.4.ebuild @@ -40,7 +40,8 @@ src_prepare() { } src_install() { - default + emake DESTDIR="${ED}" + einstalldocs if use examples; then dodoc examples/{mstat,read}.py |