summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-01-31 08:26:40 +0000
committerZac Medico <zmedico@gentoo.org>2008-01-31 08:26:40 +0000
commitc9df830f428e0e31a8a2f07cc81eb2df1c305bcc (patch)
treecb031c265307398162e189a4da53daa624df0026 /pym
parent4ea29dcea49101c7e485af1b9d4d49a64d4ae445 (diff)
downloadportage-c9df830f428e0e31a8a2f07cc81eb2df1c305bcc.tar.gz
portage-c9df830f428e0e31a8a2f07cc81eb2df1c305bcc.tar.bz2
portage-c9df830f428e0e31a8a2f07cc81eb2df1c305bcc.zip
Add 'local' to the list of non_category_dirs since it's commonly
used for layman overlays. (trunk r9241) svn path=/main/branches/2.1.2/; revision=9248
Diffstat (limited to 'pym')
-rw-r--r--pym/portage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py
index 27647514a..10f18c507 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -6796,7 +6796,7 @@ class portdbapi(dbapi):
"""this tree will scan a portage directory located at root (passed to init)"""
portdbapi_instances = []
_non_category_dirs = ["distfiles", "eclass", "licenses",
- "metadata", "packages", "profiles", "scripts"]
+ "local", "metadata", "packages", "profiles", "scripts"]
_non_category_dirs = re.compile(r'^(%s)$' % "|".join(_non_category_dirs))
def __init__(self,porttree_root,mysettings=None):
portdbapi.portdbapi_instances.append(self)