Skip to content

Commit

Permalink
Fix makefile in MultiSource/UnitTests/Float (#113)
Browse files Browse the repository at this point in the history
"Makefile:9: *** invalid syntax in conditional.  Stop."
The error occurred and I fixed it.
  • Loading branch information
IamYJLee authored Apr 15, 2024
1 parent 10275ac commit 5cfa132
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MultiSource/UnitTests/Float/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ PARALLEL_DIRS :=

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

Expand Down

0 comments on commit 5cfa132

Please sign in to comment.