R: look only at run dependencies of build and run deps
This commit is contained in:
parent
0ca1a481a3
commit
a82385cdae
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ def setup_dependent_environment(self, spack_env, run_env, extension_spec):
|
|||
# Set R_LIBS to include the library dir for the
|
||||
# extension and any other R extensions it depends on.
|
||||
r_libs_path = []
|
||||
for d in extension_spec.traverse():
|
||||
for d in extension_spec.traverse(deptype=nolink, deptype_query='run'):
|
||||
if d.package.extends(self.spec):
|
||||
r_libs_path.append(os.path.join(d.prefix, self.r_lib_dir))
|
||||
|
||||
|
|
Loading…
Reference in a new issue