Skip to content

Commit e15b6ae

Browse files
authored
Merge pull request #3563 from boegel/fix_configuremake
fix error reporting for unknown value of `unrecognized_configure_options` in `ConfigureMake`
2 parents 30dba35 + 081a90f commit e15b6ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

easybuild/easyblocks/generic/configuremake.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ def configure_step(self, cmd_prefix=''):
335335
valid_actions = (ERROR, WARN, IGNORE)
336336
# Always verify the EC param
337337
if action not in valid_actions:
338-
raise EasyBuildError('Invalid value for `unrecognized_configure_options`: %s. Must be one of: ',
338+
raise EasyBuildError("Invalid value for 'unrecognized_configure_options': %s. Must be one of: %s",
339339
action, ', '.join(valid_actions))
340340
if action != IGNORE:
341341
unrecognized_options_str = 'configure: WARNING: unrecognized options:'

0 commit comments

Comments
 (0)