aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2022-07-31 22:42:34 +0100
committerSam James <sam@gentoo.org>2022-08-01 02:19:10 +0100
commit04f64dbe3cbd24abdb3efd2d1759530bdee551ec (patch)
tree7704d2d281e73e9b90ef310349ad96cac8b774e4
parentbin/install-qa-check.d/80multilib-strict: use file/find from Prefix (diff)
downloadportage-04f64dbe3cbd24abdb3efd2d1759530bdee551ec.tar.gz
portage-04f64dbe3cbd24abdb3efd2d1759530bdee551ec.tar.bz2
portage-04f64dbe3cbd24abdb3efd2d1759530bdee551ec.zip
estrip: fix double slash for < EAPI 7
Bug: https://bugs.gentoo.org/862600 Fixes: bb88e766897f5e7e0b0a10c48cf99a04edb73a40 Signed-off-by: Sam James <sam@gentoo.org>
-rwxr-xr-xbin/estrip2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/estrip b/bin/estrip
index fc2c3ef37..63bd46eb1 100755
--- a/bin/estrip
+++ b/bin/estrip
@@ -412,7 +412,7 @@ done < <(
(
find "$@" -type f ! -type l -name '*.a'
cut -d ' ' -f1 < "${PORTAGE_BUILDDIR}"/build-info/NEEDED \
- | sed -e "s:^:${D}:"
+ | sed -e "s:^:${D%/}:"
) | LC_ALL=C sort -u
)
else