From 60bc7025606aa2dc4ae7ef342060507d80038eac Mon Sep 17 00:00:00 2001 From: orbea Date: Fri, 6 May 2022 09:08:05 -0700 Subject: [PATCH] net-dialup/freeradius: Fix typo in ebuild It should be -shared and not --shared and this typo causes the build to fail with slibtool. Additionally it needs slibtool-shared and not rlibtool. Bug: https://bugs.gentoo.org/786102 Closes: https://github.com/gentoo/gentoo/pull/25351 Signed-off-by: orbea Signed-off-by: Matt Turner --- net-dialup/freeradius/freeradius-3.0.25-r2.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/net-dialup/freeradius/freeradius-3.0.25-r2.ebuild b/net-dialup/freeradius/freeradius-3.0.25-r2.ebuild index 1577a0e55c8ab..050f03a07fe21 100644 --- a/net-dialup/freeradius/freeradius-3.0.25-r2.ebuild +++ b/net-dialup/freeradius/freeradius-3.0.25-r2.ebuild @@ -129,15 +129,15 @@ src_prepare() { raddb/radiusd.conf.in || die # verbosity - # build shared libraries using jlibtool --shared + # build shared libraries using jlibtool -shared sed -i \ -e '/$(LIBTOOL)/s|--quiet ||g' \ - -e 's:--mode=\(compile\|link\):& --shared:g' \ + -e 's:--mode=\(compile\|link\):& -shared:g' \ Make.inc.in || die sed -i \ -e 's|--silent ||g' \ - -e 's:--mode=\(compile\|link\):& --shared:g' \ + -e 's:--mode=\(compile\|link\):& -shared:g' \ scripts/libtool.mk || die # crude measure to stop jlibtool from running ranlib and ar