diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-10-09 07:54:42 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-10-09 07:54:42 +0000 |
commit | 0ac2f9513fd1c75983d6214241aac2073ab5adf5 (patch) | |
tree | 563a166fe06163c0725dbe019cf1a22c13b77599 /configure.in | |
parent | fd17a9092f18e67212f2e1af38cf49e6d872cb6b (diff) | |
download | ruby-0ac2f9513fd1c75983d6214241aac2073ab5adf5.tar.gz |
* configure.in (RSHIFT): quote to get rid of argument expansion
for autoconf 2.68.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29431 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index c7d257c995..158a7e65d1 100644 --- a/configure.in +++ b/configure.in @@ -1475,7 +1475,7 @@ if test x"$target_cpu" = xia64; then fi AC_CACHE_CHECK(whether right shift preserve sign bit, rb_cv_rshift_sign, - [AC_COMPILE_IFELSE(AC_LANG_BOOL_COMPILE_TRY([], [(-1==(-1>>1))]), + [AC_COMPILE_IFELSE([AC_LANG_BOOL_COMPILE_TRY([], [(-1==(-1>>1))])], rb_cv_rshift_sign=yes, rb_cv_rshift_sign=no)]) if test "$rb_cv_rshift_sign" = yes; then |