summaryrefslogtreecommitdiffstats
path: root/bin/doexe
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2007-04-07 08:32:35 +0000
committerMike Frysinger <vapier@gentoo.org>2007-04-07 08:32:35 +0000
commitee4d73a83c5c224cbc41fb9612ad68fcc717645e (patch)
treea999d15f8442854ef7c5eee69da68f8b354b54d2 /bin/doexe
parent28ab16294c6840042fa662282cd7ab7044d560ff (diff)
downloadportage-ee4d73a83c5c224cbc41fb9612ad68fcc717645e.tar.gz
portage-ee4d73a83c5c224cbc41fb9612ad68fcc717645e.tar.bz2
portage-ee4d73a83c5c224cbc41fb9612ad68fcc717645e.zip
change "EXEDESTTREE" to "_E_EXEDESTTREE_" to try and prevent abuse from ebuild writers
svn path=/main/trunk/; revision=6351
Diffstat (limited to 'bin/doexe')
-rwxr-xr-xbin/doexe8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/doexe b/bin/doexe
index e4e6fdc65..012e32034 100755
--- a/bin/doexe
+++ b/bin/doexe
@@ -1,5 +1,5 @@
#!/bin/bash
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -10,8 +10,8 @@ if [[ $# -lt 1 ]] ; then
exit 1
fi
-if [[ ! -d ${D}${EXEDESTTREE} ]] ; then
- install -d "${D}${EXEDESTTREE}"
+if [[ ! -d ${D}${_E_EXEDESTTREE_} ]] ; then
+ install -d "${D}${_E_EXEDESTTREE_}"
fi
for x in "$@" ; do
@@ -24,5 +24,5 @@ for x in "$@" ; do
else
mysrc="${x}"
fi
- install ${EXEOPTIONS} "${mysrc}" "${D}${EXEDESTTREE}"
+ install ${EXEOPTIONS} "${mysrc}" "${D}${_E_EXEDESTTREE_}"
done