summaryrefslogtreecommitdiffstats
path: root/bin/ebuild-helpers/sed
diff options
context:
space:
mode:
Diffstat (limited to 'bin/ebuild-helpers/sed')
-rwxr-xr-xbin/ebuild-helpers/sed27
1 files changed, 0 insertions, 27 deletions
diff --git a/bin/ebuild-helpers/sed b/bin/ebuild-helpers/sed
deleted file mode 100755
index cc447696d..000000000
--- a/bin/ebuild-helpers/sed
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/bash
-# Copyright 2007-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-scriptpath=${BASH_SOURCE[0]}
-scriptname=${scriptpath##*/}
-
-if [[ sed == ${scriptname} ]] && [[ -n ${ESED} ]]; then
- exec ${ESED} "$@"
-elif type -P g${scriptname} > /dev/null ; then
- exec g${scriptname} "$@"
-else
- old_IFS="${IFS}"
- IFS=":"
-
- for path in $PATH; do
- if [[ -x ${path}/${scriptname} ]]; then
- [[ ${path}/${scriptname} -ef ${scriptpath} ]] && continue
- exec ${path}/${scriptname} "$@"
- exit 0
- fi
- done
-
- IFS="${old_IFS}"
-fi
-
-exit 1