From 71391695bfa6af970cda2a473ba01f33aeef12cd Mon Sep 17 00:00:00 2001 From: Alexander Grund Date: Fri, 2 Aug 2024 11:50:43 +0200 Subject: [PATCH] fix GCC-system without Intel license --- easybuild/easyblocks/g/gcc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easybuild/easyblocks/g/gcc.py b/easybuild/easyblocks/g/gcc.py index fd4bc01cd67..94e58f79494 100644 --- a/easybuild/easyblocks/g/gcc.py +++ b/easybuild/easyblocks/g/gcc.py @@ -395,7 +395,7 @@ def prepare_step(self, *args, **kwargs): """ Prepare build environment, track currently active build stage """ - super(EB_GCC, self).prepare_step(*args, **kwargs) + ConfigureMake.prepare_step(self, *args, **kwargs) # Set the current build stage to the specified stage based on the iteration index self.current_stage = self.build_stages[self.iter_idx]