summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-25 03:07:55 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-25 03:07:55 +0000
commitc3ad36cda4152da60c794d1b6242c982579201de (patch)
treefb40986ea6da667325b6ce9f14dac027174c7f34
parentc0c0975d0b75cbdaabc18491c140b70c26b486e1 (diff)
downloadruby-c3ad36cda4152da60c794d1b6242c982579201de.tar.gz
ruby-c3ad36cda4152da60c794d1b6242c982579201de.tar.xz
ruby-c3ad36cda4152da60c794d1b6242c982579201de.zip
* configure.in (BASERUBY): delayed error until BASERUBY is used.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14648 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--configure.in2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index cf0ec317b..01d050ac9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Tue Dec 25 12:07:52 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * configure.in (BASERUBY): delayed error until BASERUBY is used.
+
Tue Dec 25 11:48:35 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* sample/README: removed obsoleted files: dbmtest.rb,
diff --git a/configure.in b/configure.in
index 8f2a67fd3..e25803561 100644
--- a/configure.in
+++ b/configure.in
@@ -19,7 +19,7 @@ AC_ARG_WITH(baseruby,
BASERUBY="ruby"
])
test "`$BASERUBY -e 'p 42' 2>/dev/null`" = 42 ||
- AC_MSG_ERROR([executable host ruby is required. use --with-baseruby option.])
+ BASERUBY="echo executable host ruby is required. use --with-baseruby option.; false"
AC_SUBST(BASERUBY)
AC_DEFUN([RUBY_MINGW32],