summaryrefslogtreecommitdiff
path: root/bin/sed
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2006-06-08 22:10:20 +0000
committerZac Medico <zmedico@gentoo.org>2006-06-08 22:10:20 +0000
commitda12cde0d48f59ef55562fe9ee80819868ead1ec (patch)
tree62b692c911863be0102090ad9d2394d1b8deea1c /bin/sed
parentBreak out of the loop asap. (diff)
downloadportage-multirepo-da12cde0d48f59ef55562fe9ee80819868ead1ec.tar.gz
portage-multirepo-da12cde0d48f59ef55562fe9ee80819868ead1ec.tar.bz2
portage-multirepo-da12cde0d48f59ef55562fe9ee80819868ead1ec.zip
Use ${BASH_SOURCE[0]} instead of $_ because the former is more dependable for preventing endless exec loops (see bug #135470). Testing shows that this corrects the problem for the libtool ebuild when sed is used to generate ltmain.shT.
svn path=/main/trunk/; revision=3475
Diffstat (limited to 'bin/sed')
-rwxr-xr-xbin/sed2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/sed b/bin/sed
index 6b1a5663..d4b1d87b 100755
--- a/bin/sed
+++ b/bin/sed
@@ -2,7 +2,7 @@
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-scriptpath=$_
+scriptpath="${BASH_SOURCE[0]}"
if [[ -n ${ESED} ]]; then
exec ${ESED} "$@"