commit: 89f9af3f48ab117aea5aeb8c1371939aef75ef4a
Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
AuthorDate: Sun May 19 03:39:12 2019 +0000
Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
CommitDate: Sun May 19 03:40:05 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89f9af3f
sys-fs/zfs-kmod: update live ebuild, make build verbose
also pass array to emake instead of \ madness
Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
sys-fs/zfs-kmod/zfs-kmod-9999.ebuild | 16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
diff --git a/sys-fs/zfs-kmod/zfs-kmod-9999.ebuild
b/sys-fs/zfs-kmod/zfs-kmod-9999.ebuild
index 2288b967506..b8773e1d020 100644
--- a/sys-fs/zfs-kmod/zfs-kmod-9999.ebuild
+++ b/sys-fs/zfs-kmod/zfs-kmod-9999.ebuild
@@ -116,17 +116,21 @@ src_configure() {
src_compile() {
set_arch_to_kernel
- default
+ myemakeargs=( V=1 )
+
+ emake "${myemakeargs[@]}"
}
src_install() {
set_arch_to_kernel
- emake \
- DEPMOD="/bin/true" \
- DESTDIR="${D}" \
- INSTALL_MOD_PATH="${INSTALL_MOD_PATH:-$EROOT}" \
- install
+ myemakeargs+=(
+ DEPMOD="/bin/true"
+ DESTDIR="${D}"
+ INSTALL_MOD_PATH="${INSTALL_MOD_PATH:-$EROOT}"
+ )
+
+ emake "${myemakeargs[@]}" install
einstalldocs
}