Skip to content

Commit c129c83

Browse files
committed
only filter Autotools & co (build) dependencies for EESSI 2023.06
1 parent aa99eae commit c129c83

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

EESSI-extend-easybuild.eb

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,16 @@ description = """
4545
toolchain = SYSTEM
4646

4747
# All the dependencies we filter in EESSI
48-
local_deps_to_filter = "Autoconf,Automake,Autotools,binutils,bzip2,DBus,flex,gettext,gperf,help2man,intltool,libreadline,libtool,M4,makeinfo,ncurses,ParMETIS,util-linux,XZ,zlib"
48+
local_deps_to_filter = "binutils,bzip2,DBus,flex,gettext,gperf,help2man,intltool,libreadline,makeinfo,ncurses,ParMETIS,util-linux,XZ,zlib"
49+
50+
# filter extra dependencies based on CPU family
4951
local_arch_specific_deps_to_filter = {'aarch64': ',Yasm', 'riscv64': ',Yasm', 'x86_64': ''}
5052
local_deps_to_filter += local_arch_specific_deps_to_filter[ARCH]
5153

54+
# only filter Autotools & co for EESSI 2023.06
55+
if version == '2023.06':
56+
local_deps_to_filter += ",Autoconf,Automake,Autotools,libtool,M4"
57+
5258
# Set the universal EasyBuild variables
5359
modextravars = {
5460
'EASYBUILD_FILTER_DEPS': local_deps_to_filter,

0 commit comments

Comments
 (0)