summaryrefslogtreecommitdiff
path: root/yjit
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2023-10-06 03:39:33 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2023-10-06 03:39:33 +0900
commitcf1223348a94000ff79d21ff3ecf6bd9ae7e8677 (patch)
tree2bd30cc8e55571c2012397a0cad45998280713f5 /yjit
parentfd22d5debba8a2ed97de8f015aea1f120e5dc80d (diff)
Remove unmatch parenthesis
``` yjit/yjit.mk:48: Extraneous text after `ifneq' directive ```
Diffstat (limited to 'yjit')
-rw-r--r--yjit/yjit.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/yjit/yjit.mk b/yjit/yjit.mk
index 0a4e9c3b6e..6df588581a 100644
--- a/yjit/yjit.mk
+++ b/yjit/yjit.mk
@@ -45,7 +45,7 @@ yjit-libobj: $(YJIT_LIBOBJ)
YJIT_LIB_SYMBOLS = $(YJIT_LIBS:.a=).symbols
$(YJIT_LIBOBJ): $(YJIT_LIBS)
$(ECHO) 'partial linking $(YJIT_LIBS) into $@'
-ifneq ($(or $(findstring linux,$(target_os)),$(findstring bsd,$(target_os))),$(findstring dragonfly,$(target_os))),)
+ifneq ($(or $(findstring linux,$(target_os)),$(findstring bsd,$(target_os)),$(findstring dragonfly,$(target_os))),)
$(Q) $(LD) -r -o $@ --whole-archive $(YJIT_LIBS)
-$(Q) $(OBJCOPY) --wildcard --keep-global-symbol='$(SYMBOL_PREFIX)rb_*' $(@)
else ifneq ($(findstring darwin,$(target_os)),)