Skip to content

Commit

Permalink
remove extra =
Browse files Browse the repository at this point in the history
  • Loading branch information
branfosj authored Feb 1, 2024
1 parent e4eebd3 commit 73da376
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easybuild/easyblocks/c/clang.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ def configure_step(self):
"memory unless --strict=error is used." % res.output.strip())

# the same goes for unlimited stacksize
res = run_shell_cmd("ulimit -s", fail_on_error==False)
res = run_shell_cmd("ulimit -s", fail_on_error=False)
if res.output.startswith("unlimited"):
disable_san_tests = True
self.log.warn("The stacksize limit is set to unlimited. This causes the ThreadSanitizer "
Expand Down

0 comments on commit 73da376

Please sign in to comment.