From a54d977198442673e91af6365cc10bc445cc218c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bob=20Dr=C3=B6ge?= Date: Mon, 22 Dec 2025 16:43:07 +0100 Subject: [PATCH] small change in comments --- EESSI-extend-easybuild.eb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EESSI-extend-easybuild.eb b/EESSI-extend-easybuild.eb index 5de29652..3546688f 100644 --- a/EESSI-extend-easybuild.eb +++ b/EESSI-extend-easybuild.eb @@ -47,11 +47,11 @@ toolchain = SYSTEM # All the dependencies we filter in EESSI local_deps_to_filter = "binutils,bzip2,DBus,flex,gettext,gperf,help2man,intltool,libreadline,makeinfo,ncurses,NVPL,ParMETIS,util-linux,XZ,zlib" -# filter extra dependencies based on CPU family +# Filter extra dependencies based on CPU family local_arch_specific_deps_to_filter = {'aarch64': ',Yasm', 'riscv64': ',Yasm', 'x86_64': ''} local_deps_to_filter += local_arch_specific_deps_to_filter[ARCH] -# only filter Autotools & co for EESSI 2023.06 +# Only filter Autotools & co for EESSI 2023.06 if version == '2023.06': local_deps_to_filter += ",Autoconf,Automake,Autotools,libtool,M4"