summaryrefslogtreecommitdiff
path: root/template/Makefile.in
diff options
context:
space:
mode:
authorKazuhiro NISHIYAMA <zn@mbf.nifty.com>2022-04-28 09:44:38 +0900
committerKazuhiro NISHIYAMA <zn@mbf.nifty.com>2022-04-28 09:44:38 +0900
commit4210ae2158b545beda908fb29e03d23994f262e3 (patch)
tree69b90af18668fb5ea3851ae98dc44e5f656886af /template/Makefile.in
parentc466f270b891962518763ad299f907beac0ebf62 (diff)
downloadruby-4210ae2158b545beda908fb29e03d23994f262e3.tar.gz
Try to fix error on Solaris
https://rubyci.s3.amazonaws.com/solaris10-sunc/ruby-master/log/20220428T000004Z.fail.html.gz ``` linking static-library libruby-static.a /bin/sh: syntax error at line 8: `(' unexpected gmake: *** [Makefile:318: libruby-static.a] Error 2 exit 2 failed(make) ```
Diffstat (limited to 'template/Makefile.in')
-rw-r--r--template/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/template/Makefile.in b/template/Makefile.in
index d7f205894f..82e0108afb 100644
--- a/template/Makefile.in
+++ b/template/Makefile.in
@@ -319,7 +319,7 @@ $(LIBRUBY_A):
$(MAKEDIRS) '$(CARGO_TARGET_DIR)/libyjit/' && \
$(CP) '$(YJIT_LIBS)' '$(CARGO_TARGET_DIR)/libyjit/' && \
(cd '$(CARGO_TARGET_DIR)/libyjit/' && $(AR) -x libyjit.a) && \
- $(AR) $(ARFLAGS) $@ $$(find '$(CARGO_TARGET_DIR)/libyjit/' -name '*.o') ;
+ $(AR) $(ARFLAGS) $@ `find '$(CARGO_TARGET_DIR)/libyjit/' -name '*.o'` ;
@-$(RANLIB) $@ 2> /dev/null || true
verify-static-library: $(LIBRUBY_A)