diff options
author | Georgy Yakovlev <gyakovlev@gentoo.org> | 2020-01-22 16:33:02 -0800 |
---|---|---|
committer | Georgy Yakovlev <gyakovlev@gentoo.org> | 2020-01-22 16:35:25 -0800 |
commit | 27c2432216b04ae81508c4f88e46b1694d9e4c95 (patch) | |
tree | 66edb730c84614ab40f670ca53f958cafcefd609 /sys-fs | |
parent | sys-fs/zfs: fix python detection for scripts (diff) | |
download | gentoo-27c2432216b04ae81508c4f88e46b1694d9e4c95.tar.gz gentoo-27c2432216b04ae81508c4f88e46b1694d9e4c95.tar.bz2 gentoo-27c2432216b04ae81508c4f88e46b1694d9e4c95.zip |
sys-fs/zfs: fix python detection without setuptools
Closes: https://bugs.gentoo.org/706108
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
Diffstat (limited to 'sys-fs')
-rw-r--r-- | sys-fs/zfs/zfs-0.8.2-r2.ebuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys-fs/zfs/zfs-0.8.2-r2.ebuild b/sys-fs/zfs/zfs-0.8.2-r2.ebuild index fea065189c3f..341a978b2793 100644 --- a/sys-fs/zfs/zfs-0.8.2-r2.ebuild +++ b/sys-fs/zfs/zfs-0.8.2-r2.ebuild @@ -124,6 +124,7 @@ src_prepare() { src_configure() { use custom-cflags || strip-flags + python_setup local myconf=( --bindir="${EPREFIX}/bin" @@ -137,6 +138,7 @@ src_configure() { --with-linux="${KV_DIR}" --with-linux-obj="${KV_OUT_DIR}" --with-udevdir="$(get_udevdir)" + --with-python="${EPYTHON}" --with-systemdunitdir="$(systemd_get_systemunitdir)" --with-systemdpresetdir="${EPREFIX}/lib/systemd/system-preset" $(use_enable debug) @@ -180,7 +182,6 @@ src_install() { fi # enforce best available python implementation - python_setup python_fix_shebang "${ED}/bin" } |