ruby-changes:54647
From: nobu <ko1@a...>
Date: Fri, 18 Jan 2019 14:15:04 +0900 (JST)
Subject: [ruby-changes:54647] nobu:r66863 (trunk): configure.ac: use MINIRUBY as BOOTSTRAPRUBY on msys
nobu 2019-01-18 14:14:59 +0900 (Fri, 18 Jan 2019) New Revision: 66863 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=66863 Log: configure.ac: use MINIRUBY as BOOTSTRAPRUBY on msys Msys shell may not be able to run a command with a drive letter? Modified files: trunk/configure.ac Index: configure.ac =================================================================== --- configure.ac (revision 66862) +++ configure.ac (revision 66863) @@ -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)' - test "$HAVE_BASERUBY" = yes || BOOTSTRAPRUBY='$(MINIRUBY)' + AS_CASE(["$HAVE_BASERUBY:$build_os"], [no:*|*:msys*], [BOOTSTRAPRUBY='$(MINIRUBY)']) TEST_RUNNABLE=yes CROSS_COMPILING=no ]) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/