summaryrefslogtreecommitdiffstats
path: root/bin/sed
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-04-16 01:16:50 +0000
committerZac Medico <zmedico@gentoo.org>2007-04-16 01:16:50 +0000
commit8088ca8bbe6b202f7377b28ef29292ebe4aa97ca (patch)
treeec3844cda30d723551a6fc63c95acea5a8b97dbc /bin/sed
parentc14c076250b5123f52ca4fd64cc32dab7595adf1 (diff)
downloadportage-8088ca8bbe6b202f7377b28ef29292ebe4aa97ca.tar.gz
portage-8088ca8bbe6b202f7377b28ef29292ebe4aa97ca.tar.bz2
portage-8088ca8bbe6b202f7377b28ef29292ebe4aa97ca.zip
convert `type -p` to `type -P` as noted by grobian (trunk r6410:6411)v2.1.2.4
svn path=/main/branches/2.1.2/; revision=6414
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 d4b1d87b2..0a798acb4 100755
--- a/bin/sed
+++ b/bin/sed
@@ -6,7 +6,7 @@ scriptpath="${BASH_SOURCE[0]}"
if [[ -n ${ESED} ]]; then
exec ${ESED} "$@"
-elif type -p gsed > /dev/null ; then
+elif type -P gsed > /dev/null ; then
exec gsed "$@"
else
old_IFS="${IFS}"