ruby-changes:37225
From: nobu <ko1@a...>
Date: Sat, 17 Jan 2015 23:42:44 +0900 (JST)
Subject: [ruby-changes:37225] nobu:r49306 (trunk): configure.in: no pattern substitution
nobu 2015-01-17 23:42:30 +0900 (Sat, 17 Jan 2015) New Revision: 49306 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=49306 Log: configure.in: no pattern substitution * configure.in: get rid of pattern substitution, which is not supported by ash, and ash on NetBSD parses whole source first and fails to start. [ruby-dev:48823] [Bug #10750] Modified files: trunk/ChangeLog trunk/configure.in Index: configure.in =================================================================== --- configure.in (revision 49305) +++ configure.in (revision 49306) @@ -3018,7 +3018,7 @@ if test "$with_dln_a_out" != yes; then https://github.com/ruby/ruby/blob/trunk/configure.in#L3018 "-undefined dynamic_lookup" \ "-multiply_defined suppress" \ ; do - test "x${linker_flag}" = x || flag="${linker_flag}${flag// /,}" + test "x${linker_flag}" = x || flag="${linker_flag}`echo ${flag} | tr ' ' ,`" RUBY_TRY_LDFLAGS([$flag], [], [flag=]) if test "x$flag" != x; then RUBY_APPEND_OPTIONS(DLDFLAGS, [$flag]) Index: ChangeLog =================================================================== --- ChangeLog (revision 49305) +++ ChangeLog (revision 49306) @@ -1,3 +1,9 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Sat Jan 17 23:42:27 2015 Nobuyoshi Nakada <nobu@r...> + + * configure.in: get rid of pattern substitution, which is not + supported by ash, and ash on NetBSD parses whole source first + and fails to start. [ruby-dev:48823] [Bug #10750] + Fri Jan 16 18:42:58 2015 NARUSE, Yui <naruse@r...> * tool/redmine-backporter.rb: support adding related revisions -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/