diff options
Diffstat (limited to 'template')
-rw-r--r-- | template/Makefile.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/template/Makefile.in b/template/Makefile.in index 78ebe8a338..ca7c551830 100644 --- a/template/Makefile.in +++ b/template/Makefile.in @@ -68,7 +68,7 @@ UNIVERSAL_ARCHNAMES = @UNIVERSAL_ARCHNAMES@ BUILTIN_BINARY = @X_BUILTIN_BINARY@ BUILTIN_GC = default -shared_gc_dir = @shared_gc_dir@ +modular_gc_dir = @modular_gc_dir@ TESTUI = console TESTS = @@ -348,13 +348,13 @@ $(ruby_pc): config.status Makefile $(Q)pkg_config=${PKG_CONFIG} && PKG_CONFIG_PATH=. $${pkg_config:-:} --print-errors ruby.tmp $(Q)$(MV) -f ruby.tmp.pc $(ruby_pc) -shared-gc-precheck: - $(Q) if test -z $(shared_gc_dir); then \ - echo "You must configure with --with-shared-gc to use shared GC"; \ +modular-gc-precheck: + $(Q) if test -z $(modular_gc_dir); then \ + echo "You must configure with --with-modular-gc to use modular GC"; \ exit 1; \ fi - $(Q) if test -z $(SHARED_GC); then \ - echo "You must specify SHARED_GC with the GC to build"; \ + $(Q) if test -z $(MODULAR_GC); then \ + echo "You must specify MODULAR_GC with the GC to build"; \ exit 1; \ fi |