Fixed a couple more bugs

This commit is contained in:
Gregory Becker 2016-05-23 17:25:54 -07:00
parent d438ea0880
commit 1da6bbd146
2 changed files with 2 additions and 2 deletions

View file

@ -366,7 +366,8 @@ def get_rpaths(pkg):
if os.path.isdir(d.prefix.lib64))
# Second module is our compiler mod name. We use that to get rpaths from
# module show output.
rpaths.append(get_path_from_module(pkg.compiler.modules[1]))
if pkg.compiler.modules and len(pkg.compiler.modules > 1):
rpaths.append(get_path_from_module(pkg.compiler.modules[1]))
return rpaths

View file

@ -210,7 +210,6 @@ def _concretize_target(self, spec):
spec.architecture.target = spec.root.architecture.target
else:
spec.architecture.target = spec.architecture.platform.target('default_target')
print spec.architecture, spec.architecture.platform, spec.architecture.platform_os, spec.architecture.target
return True #changed
def _concretize_platform(self, spec):