From: Zac Medico Date: Mon, 11 Oct 2010 00:55:48 +0000 (-0700) Subject: Use repoUserLocationList for PORTDIR_OVERLAY. X-Git-Tag: v2.2_rc93~12 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=de5bbdc286f52543607161b1bdcc4bcf8e003f1e;p=portage.git Use repoUserLocationList for PORTDIR_OVERLAY. --- diff --git a/pym/portage/package/ebuild/config.py b/pym/portage/package/ebuild/config.py index 54876a98f..45eae7871 100644 --- a/pym/portage/package/ebuild/config.py +++ b/pym/portage/package/ebuild/config.py @@ -483,7 +483,7 @@ class config(object): #filling PORTDIR and PORTDIR_OVERLAY variable for compatibility self["PORTDIR"] = self.repositories.mainRepoLocation() self.backup_changes("PORTDIR") - portdir_overlay = list(self.repositories.repoLocationList()) + portdir_overlay = list(self.repositories.repoUserLocationList()) if self["PORTDIR"] in portdir_overlay: portdir_overlay.remove(self["PORTDIR"]) self["PORTDIR_OVERLAY"] = " ".join(portdir_overlay)