diff --git a/easybuild/easyblocks/w/wien2k.py b/easybuild/easyblocks/w/wien2k.py index e30ac1bb85..9d8e4896dd 100644 --- a/easybuild/easyblocks/w/wien2k.py +++ b/easybuild/easyblocks/w/wien2k.py @@ -314,7 +314,6 @@ def configure_step(self): elpa_dir = "%(root)s/include/%(variant)s-%(version)s" % elpa_dict qa.extend([ - (r".*(?P[0-9]+)\t%s\n(.*\n)*" % elpa_dir, '%(number)s'), (r"Do you want to use ELPA\? \(y,N\):", 'y'), (r"Do you want to automatically search for ELPA installations\? \(Y,n\):", 'n'), (r"Please specify the ROOT-path of your ELPA installation \(like /usr/local/elpa/\) " @@ -325,6 +324,7 @@ def configure_step(self): elpa_dict['variant']), (r"Please specify the name of your installed ELPA library \(e.g. elpa or elpa_openmp\):", elpa_dict['variant']), + (r".*(?P[0-9]+)\t%s\n(.*\n)*" % elpa_dir, '%(number)s'), ]) else: qa.append((r"Do you want to use ELPA\? \(y,N\):", 'n'))