1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

configure.in: detect baseruby by default

* configure.in: default HAVE_BASERUBY to yes, for auto detection.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58298 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2017-04-10 01:46:24 +00:00
parent 5e604e6c02
commit b1ea4dd6a2

View file

@ -37,10 +37,11 @@ rm() {
{ # environment section
HAVE_BASERUBY=yes
AC_ARG_WITH(baseruby,
AS_HELP_STRING([--with-baseruby=RUBY], [use RUBY as baseruby; RUBY is the pathname of ruby]),
[AS_CASE(["$withval"],
[*ruby*],[BASERUBY=$withval; HAVE_BASERUBY=yes],
[*ruby*],[BASERUBY=$withval],
[no],[HAVE_BASERUBY=no],
[AC_MSG_ERROR(need ruby)])
],