Skip to content

Commit

Permalink
Merge pull request #1 from boegel/openblas-on-power
Browse files Browse the repository at this point in the history
wrap value passed to OpenBLAS build options in single quotes
  • Loading branch information
edmondac authored May 17, 2019
2 parents 8758fb8 + 8e833f0 commit e1c871f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easybuild/easyblocks/o/openblas.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def configure_step(self):
for key in sorted(default_opts.keys()):
for opts_key in ['buildopts', 'installopts']:
if '%s=' % key not in self.cfg[opts_key]:
self.cfg.update(opts_key, '%s=%s' % (key, default_opts[key]))
self.cfg.update(opts_key, "%s='%s'" % (key, default_opts[key]))

self.cfg.update('installopts', 'PREFIX=%s' % self.installdir)

Expand Down

0 comments on commit e1c871f

Please sign in to comment.