aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--configure.in2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index cf0ec317ba..01d050ac98 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 8f2a67fd36..e25803561d 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],