ruby-changes:37710
From: nobu <ko1@a...>
Date: Sun, 1 Mar 2015 11:17:27 +0900 (JST)
Subject: [ruby-changes:37710] nobu:r49791 (trunk): mkconfig.rb: no build-time variables
nobu 2015-03-01 11:17:13 +0900 (Sun, 01 Mar 2015) New Revision: 49791 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=49791 Log: mkconfig.rb: no build-time variables * tool/mkconfig.rb: exclude unnecessary build-time only variables, various ruby commands, installation targets, and dtrace stuffs. Modified files: trunk/tool/mkconfig.rb Index: tool/mkconfig.rb =================================================================== --- tool/mkconfig.rb (revision 49790) +++ tool/mkconfig.rb (revision 49791) @@ -74,7 +74,9 @@ File.foreach "config.status" do |line| https://github.com/ruby/ruby/blob/trunk/tool/mkconfig.rb#L74 if name case name when /^(?:ac_.*|configure_input|(?:top_)?srcdir|\w+OBJS)$/; next - when /^(?:X|(?:MINI|RUN|BASE)RUBY$)/; next + when /^(?:X|(?:MINI|RUN|(?:HAVE_)?BASE|BTEST)RUBY(?:_COMMAND)?$)/; next + when /^INSTALLDOC|TARGET$/; next + when /^DTRACE/; next when /^(?:MAJOR|MINOR|TEENY)$/; vars[name] = val; next when /^LIBRUBY_D?LD/; next when /^RUBY_INSTALL_NAME$/; next vars[name] = (install_name = val).dup if $install_name -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/