Skip to content

Commit bd89045

Browse files
committed
Document where architecture dicts are allowed in easyconfig parameters
1 parent 1f38202 commit bd89045

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

easybuild/framework/easyconfig/default.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,8 @@
134134
'sanity_check_commands': [[], ("format: [(name, options)] e.g. [('gzip','-h')]. "
135135
"Using a non-tuple is equivalent to (name, '-h')"), BUILD],
136136
'sanity_check_paths': [{}, ("List of files and directories to check "
137-
"(format: {'files':<list>, 'dirs':<list>})"), BUILD],
137+
"(format: {'files':<list>, 'dirs':<list>}). "
138+
"Architecture specific list items are supported."), BUILD],
138139
'skip': [False, "Skip existing software", BUILD],
139140
'skip_mod_files_sanity_check': [False, "Skip the check for .mod files in a GCCcore level install", BUILD],
140141
'skipsteps': [[], "Skip these steps", BUILD],
@@ -169,8 +170,10 @@
169170

170171
# DEPENDENCIES easyconfig parameters
171172
'allow_system_deps': [[], "Allow listed system dependencies (format: (<name>, <version>))", DEPENDENCIES],
172-
'builddependencies': [[], "List of build dependencies", DEPENDENCIES],
173-
'dependencies': [[], "List of dependencies", DEPENDENCIES],
173+
'builddependencies': [[], ("List of build dependencies Architecture specific versions are supported "
174+
"with 'False' to exclude the dependency"), DEPENDENCIES],
175+
'dependencies': [[], ("List of dependencies. Architecture specific versions are supported "
176+
"with 'False' to exclude the dependency"), DEPENDENCIES],
174177
'hiddendependencies': [[], "List of dependencies available as hidden modules", DEPENDENCIES],
175178
'multi_deps': [{}, "Dict of lists of dependency versions over which to iterate", DEPENDENCIES],
176179
'multi_deps_load_default': [True, "Load module for first version listed in multi_deps by default", DEPENDENCIES],

0 commit comments

Comments
 (0)