ruby-changes:54644
From: nobu <ko1@a...>
Date: Fri, 18 Jan 2019 10:55:33 +0900 (JST)
Subject: [ruby-changes:54644] nobu:r66859 (trunk): configure.ac: use BASERUBY as BOOTSTRAPRUBY if available
nobu 2019-01-18 10:55:25 +0900 (Fri, 18 Jan 2019) New Revision: 66859 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=66859 Log: configure.ac: use BASERUBY as BOOTSTRAPRUBY if available MINIRUBY may not be stable enough to run btest, in developing. Modified files: trunk/configure.ac Index: configure.ac =================================================================== --- configure.ac (revision 66858) +++ configure.ac (revision 66859) @@ -3016,6 +3016,7 @@ for var in bindir libdir rubylibprefix; https://github.com/ruby/ruby/blob/trunk/configure.ac#L3016 done BTESTRUBY='$(MINIRUBY)' +BOOTSTRAPRUBY='$(BASERUBY)' AS_IF([test x"$cross_compiling" = xyes], [ test x"$MINIRUBY" = x && MINIRUBY="${RUBY-$BASERUBY} -I`$CHDIR .; pwd` "-r'$(arch)-fake' XRUBY_LIBDIR=`${RUBY-$BASERUBY} -rrbconfig -e ['puts RbConfig::CONFIG["libdir"]']` @@ -3028,7 +3029,6 @@ AS_IF([test x"$cross_compiling" = xyes], https://github.com/ruby/ruby/blob/trunk/configure.ac#L3029 RUNRUBY_COMMAND='$(MINIRUBY) -I`cd $(srcdir)/lib; pwd`' RUNRUBY='$(RUNRUBY_COMMAND)' XRUBY='$(MINIRUBY)' - BOOTSTRAPRUBY='$(BASERUBY)' TEST_RUNNABLE=no CROSS_COMPILING=yes ], [ @@ -3038,7 +3038,7 @@ AS_IF([test x"$cross_compiling" = xyes], https://github.com/ruby/ruby/blob/trunk/configure.ac#L3038 RUNRUBY_COMMAND='$(MINIRUBY) $(srcdir)/tool/runruby.rb --extout=$(EXTOUT) $(RUNRUBYOPT)' RUNRUBY='$(RUNRUBY_COMMAND) --' XRUBY='$(RUNRUBY)' - BOOTSTRAPRUBY='$(MINIRUBY)' + test "$HAVE_BASERUBY" = yes || BOOTSTRAPRUBY='$(MINIRUBY)' TEST_RUNNABLE=yes CROSS_COMPILING=no ]) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/