summaryrefslogtreecommitdiffstats
path: root/bin/ebuild-helpers/dohard
diff options
context:
space:
mode:
Diffstat (limited to 'bin/ebuild-helpers/dohard')
-rwxr-xr-xbin/ebuild-helpers/dohard8
1 files changed, 5 insertions, 3 deletions
diff --git a/bin/ebuild-helpers/dohard b/bin/ebuild-helpers/dohard
index 22704876c..cf6fb112d 100755
--- a/bin/ebuild-helpers/dohard
+++ b/bin/ebuild-helpers/dohard
@@ -1,5 +1,5 @@
#!/bin/bash
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
if [[ $# -ne 2 ]] ; then
@@ -7,7 +7,9 @@ if [[ $# -ne 2 ]] ; then
exit 1
fi
+case "$EAPI" in 0|1|2) ED=${D} ;; esac
+
destdir=${2%/*}
-[[ ! -d ${D}${destdir} ]] && dodir "${destdir}"
+[[ ! -d ${ED}${destdir} ]] && dodir "${destdir}"
-exec ln -f "${D}$1" "${D}$2"
+exec ln -f "${ED}$1" "${ED}$2"