diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2018-11-21 15:41:45 +0100 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2018-11-21 15:45:37 +0100 |
commit | 502191e9780c5d5d6e9b886318915c6394a8bf36 (patch) | |
tree | 979d608fe0fb103cd2632fcf700e8629e2b8ec90 /sys-libs | |
parent | sys-kernel/gentoo-sources: Linux patch 4.9.138 (diff) | |
download | gentoo-502191e9780c5d5d6e9b886318915c6394a8bf36.tar.gz gentoo-502191e9780c5d5d6e9b886318915c6394a8bf36.tar.bz2 gentoo-502191e9780c5d5d6e9b886318915c6394a8bf36.zip |
sys-libs/libcap-ng: Run eautomake in prefix
Prefix needs to change some Makefile.am files which then requires
eautomake to be run.
Bug: https://bugs.gentoo.org/668722
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/libcap-ng/libcap-ng-0.7.9.ebuild | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sys-libs/libcap-ng/libcap-ng-0.7.9.ebuild b/sys-libs/libcap-ng/libcap-ng-0.7.9.ebuild index 5ca28257fb80..6b134492aa9d 100644 --- a/sys-libs/libcap-ng/libcap-ng-0.7.9.ebuild +++ b/sys-libs/libcap-ng/libcap-ng-0.7.9.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2018 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) +PYTHON_COMPAT=( python{2_7,3_{4,5,6,7}} ) -inherit flag-o-matic python-r1 +inherit autotools flag-o-matic python-r1 DESCRIPTION="POSIX 1003.1e capabilities" HOMEPAGE="https://people.redhat.com/sgrubb/libcap-ng/" @@ -26,13 +26,14 @@ src_prepare() { default if use prefix ; then sed -i "s@cat /usr@cat ${EPREFIX}/usr@" bindings/python*/Makefile.am || die + eautomake #668722 fi } src_configure() { use sparc && replace-flags -O? -O0 - local ECONF_SOURCE=${S} + local ECONF_SOURCE="${S}" local myconf=( $(use_enable static-libs static) |