ruby-changes:37167
From: usa <ko1@a...>
Date: Wed, 14 Jan 2015 16:15:08 +0900 (JST)
Subject: [ruby-changes:37167] usa:r49248 (ruby_2_0_0): merge revision(s) 48886: [Backport #10210]
usa 2015-01-14 16:15:00 +0900 (Wed, 14 Jan 2015) New Revision: 49248 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=49248 Log: merge revision(s) 48886: [Backport #10210] * configure.in (rb_cv_binary_elf): get rid of -e option of cat which is not available on BusyBox, use tr instead. [ruby-core:64824] [Bug #10210] Modified directories: branches/ruby_2_0_0/ Modified files: branches/ruby_2_0_0/ChangeLog branches/ruby_2_0_0/configure.in branches/ruby_2_0_0/version.h Index: ruby_2_0_0/configure.in =================================================================== --- ruby_2_0_0/configure.in (revision 49247) +++ ruby_2_0_0/configure.in (revision 49248) @@ -2245,8 +2245,8 @@ AC_ARG_WITH(dln-a-out, https://github.com/ruby/ruby/blob/trunk/ruby_2_0_0/configure.in#L2245 AC_CACHE_CHECK(whether ELF binaries are produced, rb_cv_binary_elf, [AC_TRY_LINK([],[], [ -AS_CASE(["`head -1 conftest$EXEEXT | cat -e`"], -['^?ELF'*], [rb_cv_binary_elf=yes], [rb_cv_binary_elf=no])], +AS_CASE(["`head -1 conftest$EXEEXT | tr -dc '\177ELF' | tr '\177' .`"], +[.ELF*], [rb_cv_binary_elf=yes], [rb_cv_binary_elf=no])], rb_cv_binary_elf=no)]) if test "$rb_cv_binary_elf" = yes; then Index: ruby_2_0_0/ChangeLog =================================================================== --- ruby_2_0_0/ChangeLog (revision 49247) +++ ruby_2_0_0/ChangeLog (revision 49248) @@ -1,3 +1,9 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_0_0/ChangeLog#L1 +Wed Jan 14 16:14:50 2015 Nobuyoshi Nakada <nobu@r...> + + * configure.in (rb_cv_binary_elf): get rid of -e option of cat + which is not available on BusyBox, use tr instead. + [ruby-core:64824] [Bug #10210] + Wed Jan 14 16:07:11 2015 NAKAMURA Usaku <usa@r...> * signal.c (ruby_signal): since SIGKILL is not supported by MSVCRT, Index: ruby_2_0_0/version.h =================================================================== --- ruby_2_0_0/version.h (revision 49247) +++ ruby_2_0_0/version.h (revision 49248) @@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_0_0/version.h#L1 #define RUBY_VERSION "2.0.0" #define RUBY_RELEASE_DATE "2015-01-14" -#define RUBY_PATCHLEVEL 609 +#define RUBY_PATCHLEVEL 610 #define RUBY_RELEASE_YEAR 2015 #define RUBY_RELEASE_MONTH 1 Property changes on: ruby_2_0_0 ___________________________________________________________________ Modified: svn:mergeinfo Merged /trunk:r48886 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/