summaryrefslogtreecommitdiffstats
path: root/bin/emaint
diff options
context:
space:
mode:
Diffstat (limited to 'bin/emaint')
-rwxr-xr-xbin/emaint3
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/emaint b/bin/emaint
index fb712db8b..2bd17d9fd 100755
--- a/bin/emaint
+++ b/bin/emaint
@@ -239,6 +239,9 @@ class MoveHandler(object):
for repo_name in self._portdb.getRepositories():
repo = self._portdb.getRepositoryPath(repo_name)
updpath = os.path.join(repo, "profiles", "updates")
+ if not os.path.isdir(updpath):
+ # as a backwards-compatibility measure, fallback to PORTDIR
+ updpath = os.path.join(self._portdb.porttree_root, "profiles", "updates")
try:
rawupdates = grab_updates(updpath)
except portage.exception.DirectoryNotFound: