summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-10-18 03:56:21 +0000
committerZac Medico <zmedico@gentoo.org>2009-10-18 03:56:21 +0000
commite7c857c6c8d61c24a6e13ba75e5c29ef13e85414 (patch)
tree26ebcf3dd59a58b6a2990b6f1418b016766a8a91
parentfac0b567769cbbd1c2bbc95b19efe7a2bcaad704 (diff)
downloadportage-e7c857c6c8d61c24a6e13ba75e5c29ef13e85414.tar.gz
portage-e7c857c6c8d61c24a6e13ba75e5c29ef13e85414.tar.bz2
portage-e7c857c6c8d61c24a6e13ba75e5c29ef13e85414.zip
In dyn_unpack, check mtimes on $A instead of $AA. Thanks to Jonathan Callen
<abcd@g.o> for reporting. (trunk r14619) svn path=/main/branches/2.1.7/; revision=14647
-rwxr-xr-xbin/ebuild.sh2
1 files changed, 1 insertions, 1 deletions
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..."