Skip to content

Commit 7d61df7

Browse files
committed
add missing )
1 parent 45ea4ce commit 7d61df7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

eb_hooks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -725,7 +725,7 @@ def pre_prepare_hook_llvm_a64fx(self, *args, **kwargs):
725725
"""
726726
cpu_target = get_eessi_envvar('EESSI_SOFTWARE_SUBDIR')
727727
if cpu_target == CPU_TARGET_A64FX:
728-
if (self.name == 'LLVM' and self.version in ['14.0.6', '15.0.5'] or (self.name == 'Rust' and self.version == '1.65.0'):
728+
if (self.name == 'LLVM' and self.version in ['14.0.6', '15.0.5']) or (self.name == 'Rust' and self.version == '1.65.0'):
729729
self.orig_optarch = build_option('optarch')
730730
update_build_option('optarch', 'march=armv8.2-a')
731731

@@ -736,7 +736,7 @@ def post_prepare_hook_llvm_a64fx(self, *args, **kwargs):
736736
"""
737737
cpu_target = get_eessi_envvar('EESSI_SOFTWARE_SUBDIR')
738738
if cpu_target == CPU_TARGET_A64FX:
739-
if (self.name == 'LLVM' and self.version in ['14.0.6', '15.0.5'] or (self.name == 'Rust' and self.version == '1.65.0'):
739+
if (self.name == 'LLVM' and self.version in ['14.0.6', '15.0.5']) or (self.name == 'Rust' and self.version == '1.65.0'):
740740
update_build_option('optarch', self.orig_optarch)
741741

742742

0 commit comments

Comments
 (0)