mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
net-libs/libtorrent: fix GREP call
scripts/common.m4 calls $GREP at configure time. this can cause problems with slibtool and maybe also split-usr env. problem raised in the forum Signed-off-by: Nicolas PARLANT <nicolas.parlant@parhuet.fr> Part-of: https://github.com/gentoo/gentoo/pull/43230 Closes: https://github.com/gentoo/gentoo/pull/43230 Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
committed by
Sam James
parent
c1d035b901
commit
2864921f7f
14
net-libs/libtorrent/files/libtorrent-0.15.5-find_grep.patch
Normal file
14
net-libs/libtorrent/files/libtorrent-0.15.5-find_grep.patch
Normal file
@@ -0,0 +1,14 @@
|
||||
https://github.com/rakshasa/libtorrent/pull/539.patch
|
||||
configure fails with slibtool because it doesn't define GREP
|
||||
diff --git a/scripts/common.m4 b/scripts/common.m4
|
||||
index 480bdef..7129204 100644
|
||||
--- a/scripts/common.m4
|
||||
+++ b/scripts/common.m4
|
||||
@@ -23,6 +23,7 @@ AC_DEFUN([TORRENT_WITH_SYSROOT], [
|
||||
|
||||
AC_DEFUN([TORRENT_REMOVE_UNWANTED],
|
||||
[
|
||||
+ AC_REQUIRE([AC_PROG_GREP])
|
||||
values_to_check=`for i in $2; do echo $i; done`
|
||||
unwanted_values=`for i in $3; do echo $i; done`
|
||||
if test -z "${unwanted_values}"; then
|
||||
@@ -33,6 +33,8 @@ BDEPEND="
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${PN}-0.14.0-tests-address.patch
|
||||
"${FILESDIR}"/${PN}-0.15.3-unbundle_udns.patch
|
||||
# https://github.com/rakshasa/libtorrent/pull/539.patch
|
||||
"${FILESDIR}"/${PN}-0.15.5-find_grep.patch
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
|
||||
Reference in New Issue
Block a user