Skip to content

Commit 5cfa132

Browse files
authored
Fix makefile in MultiSource/UnitTests/Float (#113)
"Makefile:9: *** invalid syntax in conditional. Stop." The error occurred and I fixed it.
1 parent 10275ac commit 5cfa132

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MultiSource/UnitTests/Float/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ PARALLEL_DIRS :=
66

77
# Tests in 'rounding' can run only if the target implements builtin functions
88
# for rounding mode manipulation.
9-
ifneq (, $filter($(ARCH), X86_64 AArch64)
9+
ifneq (,$(filter $(ARCH), X86_64 AArch64))
1010
PARALLEL_DIRS += rounding
1111
endif
1212

0 commit comments

Comments
 (0)