From: Zac Medico Date: Sun, 18 Oct 2009 03:56:21 +0000 (-0000) Subject: In dyn_unpack, check mtimes on $A instead of $AA. Thanks to Jonathan Callen X-Git-Tag: v2.1.7.2~45 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e7c857c6c8d61c24a6e13ba75e5c29ef13e85414;p=portage.git In dyn_unpack, check mtimes on $A instead of $AA. Thanks to Jonathan Callen for reporting. (trunk r14619) svn path=/main/branches/2.1.7/; revision=14647 --- diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 65f361a74..030388c83 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..."