Fix bug in directory layout hidden files()

This commit is contained in:
Todd Gamblin
2015-05-10 17:56:27 -07:00
parent 5d2ee893c4
commit 43e5465592
3 changed files with 8 additions and 3 deletions

View File

@@ -139,7 +139,9 @@ def write_easy_install_pth(self, exts):
def activate(self, ext_pkg, **args):
args.update(ignore=self.python_ignore(ext_pkg, args))
ignore=self.python_ignore(ext_pkg, args)
args.update(ignore=ignore)
super(Python, self).activate(ext_pkg, **args)
exts = spack.install_layout.extension_map(self.spec)