Skip to content

Commit

Permalink
missed one
Browse files Browse the repository at this point in the history
  • Loading branch information
branfosj authored Jan 31, 2024
1 parent e959e1d commit 0cc893b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easybuild/easyblocks/i/intel_compilers.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def make_module_extra(self):
res = run_shell_cmd("gcc -print-multiarch")
multiarch_out = res.output.strip()
if res.exit_code == 0 and multiarch_out:
res = run_cmd("gcc -E -Wp,-v -xc /dev/null 2>&1 | grep %s$" % multiarch_out)
res = run_shell_cmd("gcc -E -Wp,-v -xc /dev/null 2>&1 | grep %s$" % multiarch_out)
multiarch_inc_dir = res.output.strip()
if res.exit_code == 0 and multiarch_inc_dir:
self.log.info("Adding multiarch include path %s to $CPATH in generated module file", multiarch_inc_dir)
Expand Down

0 comments on commit 0cc893b

Please sign in to comment.