Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: bin/
Date: Mon, 01 Aug 2022 01:19:21
Message-Id: 1659316750.04f64dbe3cbd24abdb3efd2d1759530bdee551ec.sam@gentoo
1 commit: 04f64dbe3cbd24abdb3efd2d1759530bdee551ec
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 31 21:42:34 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 1 01:19:10 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=04f64dbe
7
8 estrip: fix double slash for < EAPI 7
9
10 Bug: https://bugs.gentoo.org/862600
11 Fixes: bb88e766897f5e7e0b0a10c48cf99a04edb73a40
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 bin/estrip | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17 diff --git a/bin/estrip b/bin/estrip
18 index fc2c3ef37..63bd46eb1 100755
19 --- a/bin/estrip
20 +++ b/bin/estrip
21 @@ -412,7 +412,7 @@ done < <(
22 (
23 find "$@" -type f ! -type l -name '*.a'
24 cut -d ' ' -f1 < "${PORTAGE_BUILDDIR}"/build-info/NEEDED \
25 - | sed -e "s:^:${D}:"
26 + | sed -e "s:^:${D%/}:"
27 ) | LC_ALL=C sort -u
28 )
29 else