From 60633b0acfd41a0732992d9e16800dae71a056eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bob=20Dr=C3=B6ge?= Date: Tue, 29 Oct 2024 13:47:16 +0100 Subject: [PATCH] modify comment to better reflect what this fix does --- easybuild/easyblocks/s/score_p.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/easybuild/easyblocks/s/score_p.py b/easybuild/easyblocks/s/score_p.py index 1805c39565..9450004440 100644 --- a/easybuild/easyblocks/s/score_p.py +++ b/easybuild/easyblocks/s/score_p.py @@ -53,9 +53,8 @@ def configure_step(self, *args, **kwargs): """Configure the build, set configure options for compiler, MPI and dependencies.""" if LooseVersion(self.version) >= LooseVersion('8.0') and LooseVersion(self.version) < LooseVersion('8.5'): - # Let configure scripts specifically check for yes|no instead of *yes*|*no*, - # to prevent errors for certain dependencies installed in a path that includes "yes" or "no" - # see https://gitlab.com/score-p/scorep/-/issues/1008 + # Fix an issue where the configure script would fail if certain dependencies are installed in a path + # that includes "yes" or "no", see https://gitlab.com/score-p/scorep/-/issues/1008. yes_no_regex = [ (r'\*yes\*\|\*no\*', 'yes,*|no,*|*,yes|*,no'), (r'_lib}\${with_', '_lib},${with_'),