diff options
author | Zac Medico <zmedico@gentoo.org> | 2009-10-17 05:56:57 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2009-10-17 05:56:57 +0000 |
commit | 6f6aaa3069283bd15dbefd5721404739fc69c7d0 (patch) | |
tree | 7d5088ed28a08a7c0586e802849d30ce80670200 /bin/ebuild.sh | |
parent | Make phase variable local in has_phase_defined_up_to(). (diff) | |
download | portage-multirepo-6f6aaa3069283bd15dbefd5721404739fc69c7d0.tar.gz portage-multirepo-6f6aaa3069283bd15dbefd5721404739fc69c7d0.tar.bz2 portage-multirepo-6f6aaa3069283bd15dbefd5721404739fc69c7d0.zip |
In dyn_unpack, check mtimes on $A instead of $AA. Thanks to Jonathan Callen
<abcd@g.o> for reporting.
svn path=/main/trunk/; revision=14619
Diffstat (limited to 'bin/ebuild.sh')
-rwxr-xr-x | bin/ebuild.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 88084c5a..116d6342 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..." |