summaryrefslogtreecommitdiffstats
path: root/bin/ebuild-helpers/dosed
diff options
context:
space:
mode:
Diffstat (limited to 'bin/ebuild-helpers/dosed')
-rwxr-xr-xbin/ebuild-helpers/dosed8
1 files changed, 3 insertions, 5 deletions
diff --git a/bin/ebuild-helpers/dosed b/bin/ebuild-helpers/dosed
index 00cf5da17..afc949ba5 100755
--- a/bin/ebuild-helpers/dosed
+++ b/bin/ebuild-helpers/dosed
@@ -1,5 +1,5 @@
#!/bin/bash
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
if [[ $# -lt 1 ]] ; then
@@ -7,14 +7,12 @@ if [[ $# -lt 1 ]] ; then
exit 1
fi
-case "$EAPI" in 0|1|2) ED=${D} ;; esac
-
ret=0
file_found=0
-mysed="s:${ED}::g"
+mysed="s:${D}::g"
for x in "$@" ; do
- y=$ED${x#/}
+ y=$D${x#/}
if [ -e "${y}" ] ; then
if [ -f "${y}" ] ; then
file_found=1