From 477002f3866b451a2eef68d8b8cccf48f76bf339 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Sat, 30 Sep 2017 16:12:18 +0200 Subject: [PATCH] pass in post_install_step to avoid problems with symlinks created by GCC easyblock --- easybuild/easyblocks/generic/systemcompiler.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/easybuild/easyblocks/generic/systemcompiler.py b/easybuild/easyblocks/generic/systemcompiler.py index d108c5ab0b..b33653c92d 100644 --- a/easybuild/easyblocks/generic/systemcompiler.py +++ b/easybuild/easyblocks/generic/systemcompiler.py @@ -274,6 +274,10 @@ def make_module_extra(self, *args, **kwargs): extras = super(SystemCompiler, self).make_module_extra(*args, **kwargs) return extras + def post_install_step(self, *args, **kwargs): + """Do nothing.""" + pass + def cleanup_step(self): """Do nothing.""" pass