Skip to content

Commit

Permalink
Revert "Change to issue an error"
Browse files Browse the repository at this point in the history
This reverts commit 26488fe.
  • Loading branch information
Flamefire committed Aug 8, 2024
1 parent 1172219 commit 70a582e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion easybuild/easyblocks/generic/configuremake.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,12 @@ def configure_step(self, cmd_prefix=''):
)

(out, _) = run_cmd(cmd, log_all=True, simple=False)
check_log_for_errors(out, ['configure: WARNING: unrecognized options:'])
try:
check_log_for_errors(out, ['configure: WARNING: unrecognized options:'])
except EasyBuildError as err:
self.log.deprecated("Unknown arguments for configure used: %s" % err, '5.0')
print_warning("Unknown arguments for configure detected: %s" % err)

return out

def build_step(self, verbose=False, path=None):
Expand Down

0 comments on commit 70a582e

Please sign in to comment.