summaryrefslogtreecommitdiff
path: root/tool/mkconfig.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-06-09 06:32:18 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-06-09 06:32:18 +0000
commit2bd061f25e93683d7b2aa36f1227cef3df8dd37e (patch)
treed0ec0d212c1c2a2e4cb9d81a797caebd4cbc6670 /tool/mkconfig.rb
parent9403716fb093e1a6e1c3dfbfb32561dad9d84198 (diff)
common.mk: ifchange for mkconfig.rb
* common.mk (RBCONFIG): use ifchange tool to see if the content is changed and update the timestamp file. * tool/mkconfig.rb: remove ifchange features. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55338 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool/mkconfig.rb')
-rwxr-xr-xtool/mkconfig.rb28
1 files changed, 0 insertions, 28 deletions
diff --git a/tool/mkconfig.rb b/tool/mkconfig.rb
index 63d0520dba..566f5a304e 100755
--- a/tool/mkconfig.rb
+++ b/tool/mkconfig.rb
@@ -19,17 +19,6 @@ $:.unshift(".")
require "fileutils"
mkconfig = File.basename($0)
-rbconfig_rb = ARGV[0] || 'rbconfig.rb'
-unless File.directory?(dir = File.dirname(rbconfig_rb))
- FileUtils.makedirs(dir, :verbose => true)
-end
-
-config = ""
-def config.write(arg)
- concat(arg.to_s)
-end
-$stdout = config
-
fast = {'prefix'=>TRUE, 'ruby_install_name'=>TRUE, 'INSTALL'=>TRUE, 'EXEEXT'=>TRUE}
win32 = /mswin/ =~ arch
@@ -287,21 +276,4 @@ end
CROSS_COMPILING = nil unless defined? CROSS_COMPILING
EOS
-$stdout = STDOUT
-mode = IO::RDWR|IO::CREAT
-mode |= IO::BINARY if defined?(IO::BINARY)
-open(rbconfig_rb, mode) do |f|
- if $timestamp and f.stat.size == config.size and f.read == config
- puts "#{rbconfig_rb} unchanged"
- else
- puts "#{rbconfig_rb} updated"
- f.rewind
- f.truncate(0)
- f.print(config)
- end
-end
-if String === $timestamp
- FileUtils.touch($timestamp)
-end
-
# vi:set sw=2: