summaryrefslogtreecommitdiffstats
path: root/bin/dobin
diff options
context:
space:
mode:
Diffstat (limited to 'bin/dobin')
-rwxr-xr-xbin/dobin6
1 files changed, 4 insertions, 2 deletions
diff --git a/bin/dobin b/bin/dobin
index f24e34167..45cc61d7e 100755
--- a/bin/dobin
+++ b/bin/dobin
@@ -3,8 +3,10 @@
# Distributed under the terms of the GNU General Public License v2
# $Id$
+source "${PORTAGE_BIN_PATH:-/usr/lib/portage/bin}"/isolated-functions.sh
+
if [[ $# -lt 1 ]] ; then
- echo "$0: at least one argument needed" 1>&2
+ vecho "$0: at least one argument needed" 1>&2
exit 1
fi
@@ -18,7 +20,7 @@ for x in "$@" ; do
if [[ -e ${x} ]] ; then
install -m0755 -o ${PORTAGE_INST_UID:-0} -g ${PORTAGE_INST_GID:-0} "${x}" "${D}${DESTTREE}/bin"
else
- echo "!!! ${0##*/}: ${x} does not exist" 1>&2
+ vecho "!!! ${0##*/}: ${x} does not exist" 1>&2
false
fi
((ret+=$?))