summaryrefslogtreecommitdiffstats
path: root/bin/doins
diff options
context:
space:
mode:
Diffstat (limited to 'bin/doins')
-rwxr-xr-xbin/doins11
1 files changed, 9 insertions, 2 deletions
diff --git a/bin/doins b/bin/doins
index 945938c8b..57a21c4bb 100755
--- a/bin/doins
+++ b/bin/doins
@@ -28,7 +28,7 @@ fi
[[ ! -d ${D}${INSDESTTREE} ]] && dodir "${INSDESTTREE}"
_doins() {
- local mysrc="$1" mydir="$2" cleanup=""
+ local mysrc="$1" mydir="$2" cleanup="" rval
if [ -L "$mysrc" ] ; then
cp "$mysrc" "${T}"
@@ -37,7 +37,9 @@ _doins() {
fi
install ${INSOPTIONS} "${mysrc}" "${D}${INSDESTTREE}/${mydir}"
+ rval=$?
[[ -n ${cleanup} ]] && rm -f "${cleanup}"
+ return $rval
}
_xdoins() {
@@ -46,6 +48,8 @@ _xdoins() {
done
}
+success=0
+
for x in "$@" ; do
if [ -d "$x" ] ; then
if [ "${DOINSRECUR}" == "n" ] ; then
@@ -63,7 +67,10 @@ for x in "$@" ; do
find "${x##*/}" -type d -exec dodir "${INSDESTTREE}/{}" \;
find "${x##*/}" \( -type f -or -type l \) -print0 | _xdoins
popd >/dev/null
+ ((++success))
else
- _doins "${x}"
+ _doins "${x}" && ((++success))
fi
done
+
+[ $success -gt 0 ] && exit 0 || exit 1