Skip to content

Commit 265f2bf

Browse files
committed
update log messsages in the cmake hook
1 parent 45c006b commit 265f2bf

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

eb_hooks.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -951,8 +951,11 @@ def pre_configure_hook_cmake_system(self, *args, **kwargs):
951951

952952
if self.name == 'CMake':
953953
if self.toolchain.name == 'system':
954-
print_msg("Unset configopts to use ncurses library from the EESSI compatibility layer")
954+
self.log.info("EESSI hook: unset configopts to build on top of EESSI compatibility layer")
955+
self.log.info("https://github.com/EESSI/software-layer/issues/1175")
956+
self.log.info(f"Current configopts before the EESSI custom hook: {self.cfg['configopts']}")
955957
self.cfg['configopts'] = ''
958+
self.log.info(f"Updated configopts after the EESSI custom hook: {self.cfg['configopts']}")
956959
else:
957960
raise EasyBuildError("CMake-specific hook triggered for non-CMake easyconfig?!")
958961

0 commit comments

Comments
 (0)