mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-26 08:55:57 +02:00
Closes: https://bugs.gentoo.org/943361 Closes: https://bugs.gentoo.org/933779 Closes: https://bugs.gentoo.org/910214 Closes: https://bugs.gentoo.org/886183 Closes: https://bugs.gentoo.org/908700 Closes: https://bugs.gentoo.org/909327 Closes: https://bugs.gentoo.org/828989 Closes: https://bugs.gentoo.org/926801 Signed-off-by: Cheyenne Wills <cwills@witznd.net> Closes: https://github.com/gentoo/gentoo/pull/39306 Signed-off-by: Sam James <sam@gentoo.org>
31 lines
1.1 KiB
Diff
31 lines
1.1 KiB
Diff
From b9bd06a715cf2a68c73d6bdf57d475ae5d1d61d5 Mon Sep 17 00:00:00 2001
|
|
From: Andrew Savchenko <bircoph@gmail.com>
|
|
Date: Sat, 5 Jan 2019 10:15:03 +0300
|
|
Subject: [PATCH 10/13] libperl
|
|
|
|
Filter out -lnsl reported by perl.
|
|
libnsl it is neither needed nor provided.
|
|
|
|
(cherry picked from commit 243186f42cc84af2ff90f6710c6e76b1a4121064)
|
|
(cherry picked from commit 99183cb191e653288ed8ed656ecd9f484a1715e3)
|
|
(cherry picked from commit e27f7a255c4f064c149d57ed965523ef9932f436)
|
|
---
|
|
src/libuafs/Makefile.common.in | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/libuafs/Makefile.common.in b/src/libuafs/Makefile.common.in
|
|
index 941605027176..eca360777151 100644
|
|
--- a/src/libuafs/Makefile.common.in
|
|
+++ b/src/libuafs/Makefile.common.in
|
|
@@ -142,7 +142,7 @@ RX =../rx
|
|
AFSINT=../afsint
|
|
LIB =../lib
|
|
SWIG_PERL_CFLAGS = -fPIC `perl -MExtUtils::Embed -e ccopts`
|
|
-SWIG_PERL_LDFLAGS = -fPIC `perl -MExtUtils::Embed -e ldopts`
|
|
+SWIG_PERL_LDFLAGS = -fPIC `perl -MExtUtils::Embed -e ldopts | sed "s/-lnsl //g"`
|
|
SWIG = @SWIG@
|
|
LIBUAFS_BUILD_PERL = @LIBUAFS_BUILD_PERL@
|
|
|
|
--
|
|
2.45.2
|
|
|