We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2864e7 commit 7e30e28Copy full SHA for 7e30e28
easybuild/easyblocks/n/nvhpc.py
@@ -165,7 +165,8 @@ def install_step(self):
165
sys.stdout.write(line)
166
167
if LooseVersion(self.version) >= LooseVersion('22.9'):
168
- cmd = "%s -x %s" % (makelocalrc_filename, compilers_subdir)
+ bin_subdir = os.path.join(compilers_subdir, "bin")
169
+ cmd = "%s -x %s" % (makelocalrc_filename, bin_subdir)
170
else:
171
cmd = "%s -x %s -g77 /" % (makelocalrc_filename, compilers_subdir)
172
run_cmd(cmd, log_all=True, simple=True)
0 commit comments