Skip to content

Commit

Permalink
move down very liberal question pattern that includes path of ELPA in…
Browse files Browse the repository at this point in the history
…stallation directory
  • Loading branch information
boegel committed Aug 20, 2024
1 parent 5b74bdd commit 45f9339
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easybuild/easyblocks/w/wien2k.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,6 @@ def configure_step(self):
elpa_dir = "%(root)s/include/%(variant)s-%(version)s" % elpa_dict

qa.extend([
(r".*(?P<number>[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/\) "
Expand All @@ -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<number>[0-9]+)\t%s\n(.*\n)*" % elpa_dir, '%(number)s'),
])
else:
qa.append((r"Do you want to use ELPA\? \(y,N\):", 'n'))
Expand Down

0 comments on commit 45f9339

Please sign in to comment.