summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Zhu <[email protected]>2024-10-03 10:59:29 -0400
committerPeter Zhu <[email protected]>2024-10-03 15:45:03 -0400
commitcd71fa96ac5ac46479eae262bff7349b2817d198 (patch)
treec0da266b91b54af301c90bff22099ab9f3749907
parent568511f3937502aa84a33f321508bd2cda652303 (diff)
Remove else case for shared-gc make target
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/11783
-rw-r--r--common.mk3
1 files changed, 1 insertions, 2 deletions
diff --git a/common.mk b/common.mk
index ebbaf1aa6c..6e861dc4b0 100644
--- a/common.mk
+++ b/common.mk
@@ -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