From: Zac Medico Date: Sat, 17 Oct 2009 05:56:57 +0000 (-0000) Subject: In dyn_unpack, check mtimes on $A instead of $AA. Thanks to Jonathan Callen X-Git-Tag: v2.2_rc47~48 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=6f6aaa3069283bd15dbefd5721404739fc69c7d0;p=portage.git In dyn_unpack, check mtimes on $A instead of $AA. Thanks to Jonathan Callen for reporting. svn path=/main/trunk/; revision=14619 --- diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 88084c5a2..116d6342a 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -697,7 +697,7 @@ dyn_unpack() { if [ -e "${WORKDIR}" ]; then local x local checkme - for x in ${AA}; do + for x in $A ; do vecho ">>> Checking ${x}'s mtime..." if [ "${PORTAGE_ACTUAL_DISTDIR:-${DISTDIR}}/${x}" -nt "${WORKDIR}" ]; then vecho ">>> ${x} has been updated; recreating WORKDIR..."