From a096da4db6b7e768900a39e60d74ad43f74f0c42 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sun, 30 Mar 2008 09:17:01 +0000 Subject: Make doins clean up it's own temp files. This solves an odd issue in dyn_package() when portage 2.1.x is installing portage-2.2 and temp python module files from doins are imported instead of the expected ones. svn path=/main/trunk/; revision=9628 --- bin/doins | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/doins b/bin/doins index a4f5ee22f..945938c8b 100755 --- a/bin/doins +++ b/bin/doins @@ -28,14 +28,16 @@ fi [[ ! -d ${D}${INSDESTTREE} ]] && dodir "${INSDESTTREE}" _doins() { - local mysrc="$1" mydir="$2" + local mysrc="$1" mydir="$2" cleanup="" if [ -L "$mysrc" ] ; then cp "$mysrc" "${T}" mysrc="${T}/${mysrc##*/}" + cleanup=${mysrc} fi install ${INSOPTIONS} "${mysrc}" "${D}${INSDESTTREE}/${mydir}" + [[ -n ${cleanup} ]] && rm -f "${cleanup}" } _xdoins() { -- cgit v1.2.3-1-g7c22