summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-10-17 05:56:57 +0000
committerZac Medico <zmedico@gentoo.org>2009-10-17 05:56:57 +0000
commit6f6aaa3069283bd15dbefd5721404739fc69c7d0 (patch)
tree7d5088ed28a08a7c0586e802849d30ce80670200
parentMake phase variable local in has_phase_defined_up_to(). (diff)
downloadportage-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
-rwxr-xr-xbin/ebuild.sh2
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..."