diff options
author | Luis Ressel <aranea@aixah.de> | 2016-03-06 23:14:03 +0100 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2016-03-07 16:32:51 -0600 |
commit | 1d5e60b5e81a3b65f2c273a1c320a9e637c85618 (patch) | |
tree | 996b096a4003a108d39f88c6a8b9fab8102c8e36 /sys-apps | |
parent | sys-apps/util-linux: fix building w/newer glibc (diff) | |
download | gentoo-1d5e60b5e81a3b65f2c273a1c320a9e637c85618.tar.gz gentoo-1d5e60b5e81a3b65f2c273a1c320a9e637c85618.tar.bz2 gentoo-1d5e60b5e81a3b65f2c273a1c320a9e637c85618.zip |
sys-apps/s6: Add a static-libs USE flag
libs6 is used by other packages such as s6-rc, so it'd be useful to be
able to control the availability of libs6.a without depending on
USE=static.
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/s6/s6-2.2.4.3.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-apps/s6/s6-2.2.4.3.ebuild b/sys-apps/s6/s6-2.2.4.3.ebuild index 171342f9a170..8aeee3a383e0 100644 --- a/sys-apps/s6/s6-2.2.4.3.ebuild +++ b/sys-apps/s6/s6-2.2.4.3.ebuild @@ -13,7 +13,7 @@ SRC_URI="http://www.skarnet.org/software/${PN}/${P}.tar.gz" LICENSE="ISC" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="static" +IUSE="static static-libs" DEPEND=">=sys-devel/make-4.0 static? ( @@ -42,8 +42,8 @@ src_configure() { econf \ $(use_enable !static shared) \ + $(use_enable static-libs static) \ $(use_enable static allstatic) \ - $(use_enable static) \ --bindir=/bin \ --sbindir=/sbin \ --dynlibdir=/$(get_libdir) \ |