aboutsummaryrefslogtreecommitdiffstats
path: root/tool/mkconfig.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-02-19 03:49:37 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-02-19 03:49:37 +0000
commit1955ac9e820f4f42debe889643104cce8cc3cacc (patch)
treee1f75e4e2a0f390c8bc849afc99e619fd218ed93 /tool/mkconfig.rb
parenta168db1cb28311cd5d4d38964ae778116285c3c6 (diff)
downloadruby-1955ac9e820f4f42debe889643104cce8cc3cacc.tar.gz
* tool/mkconfig.rb: exclude variables to just build libruby.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39315 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool/mkconfig.rb')
-rwxr-xr-xtool/mkconfig.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/tool/mkconfig.rb b/tool/mkconfig.rb
index d8e9f0f3b7..a37aaa8330 100755
--- a/tool/mkconfig.rb
+++ b/tool/mkconfig.rb
@@ -75,6 +75,7 @@ File.foreach "config.status" do |line|
when /^(?:ac_.*|configure_input|(?:top_)?srcdir|\w+OBJS)$/; next
when /^(?:X|(?:MINI|RUN|BASE)RUBY$)/; next
when /^(?:MAJOR|MINOR|TEENY)$/; next
+ when /^LIBRUBY_D?LD/; next
when /^RUBY_INSTALL_NAME$/; next if $install_name
when /^RUBY_SO_NAME$/; next if $so_name
when /^arch$/; if val.empty? then val = arch else arch = val end