diff options
author | Peter Zhu <[email protected]> | 2024-10-03 10:59:29 -0400 |
---|---|---|
committer | Peter Zhu <[email protected]> | 2024-10-03 15:45:03 -0400 |
commit | cd71fa96ac5ac46479eae262bff7349b2817d198 (patch) | |
tree | c0da266b91b54af301c90bff22099ab9f3749907 | |
parent | 568511f3937502aa84a33f321508bd2cda652303 (diff) |
Remove else case for shared-gc make target
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/11783
-rw-r--r-- | common.mk | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1912,9 +1912,8 @@ shared-gc: probes.h elif test -z $(SHARED_GC); then \ echo "You must specify SHARED_GC with the GC to build"; \ exit 1; \ - else \ - echo generating $(shared_gc_dir)librubygc.$(SHARED_GC).$(SOEXT); \ fi + $(ECHO) generating $(shared_gc_dir)librubygc.$(SHARED_GC).$(SOEXT) $(Q) $(MAKEDIRS) $(shared_gc_dir) $(Q) $(LDSHARED) -I$(srcdir)/include -I$(srcdir) -I$(arch_hdrdir) $(XDLDFLAGS) $(cflags) -DBUILDING_SHARED_GC -fPIC -o $(shared_gc_dir)librubygc.$(SHARED_GC).$(SOEXT) $(srcdir)/gc/$(SHARED_GC).c |