From 73da37604b1ed570203bd32c7eb78c54e877d91c Mon Sep 17 00:00:00 2001 From: Simon Branford <4967+branfosj@users.noreply.github.com> Date: Thu, 1 Feb 2024 20:27:23 +0000 Subject: [PATCH] remove extra = --- easybuild/easyblocks/c/clang.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyblocks/c/clang.py b/easybuild/easyblocks/c/clang.py index 1f4a52aacf..9e8fd325d8 100644 --- a/easybuild/easyblocks/c/clang.py +++ b/easybuild/easyblocks/c/clang.py @@ -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 "