summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-29 05:12:17 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-01-29 05:12:17 +0000
commit094a247a04cec7078a84a3b4259ead9a711da347 (patch)
treeabee28efbcdf43158c4685e02fd1661130511668 /configure.in
parent958874ba0a54506e02bf2d86cac7e4d57b0d2db6 (diff)
* configure.in (BASERUBY): erases RUBYOPT at the test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21874 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 66b5e91c25..a5b95704f4 100644
--- a/configure.in
+++ b/configure.in
@@ -18,7 +18,7 @@ AC_ARG_WITH(baseruby,
[
BASERUBY="ruby"
])
-test "`$BASERUBY -e 'p 42' 2>/dev/null`" = 42 ||
+test "`RUBYOPT=- $BASERUBY -e 'p 42' 2>/dev/null`" = 42 ||
BASERUBY="echo executable host ruby is required. use --with-baseruby option.; false"
AC_SUBST(BASERUBY)