diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-05-24 16:43:45 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-05-24 16:43:45 +0000 |
| commit | 2ba75fe78c6052d5c3144f76fa264ba464619bbd (patch) | |
| tree | ea01121cd763ec6e8d5d219afbc5d170f5711205 /ext | |
| parent | 14c917a19514a67ecc2dc3d46bb068ac4b4ba8e2 (diff) | |
| download | ruby-2ba75fe78c6052d5c3144f76fa264ba464619bbd.tar.gz ruby-2ba75fe78c6052d5c3144f76fa264ba464619bbd.tar.xz ruby-2ba75fe78c6052d5c3144f76fa264ba464619bbd.zip | |
* ext/extmk.rb: deal with $static set in extconf.rb.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10188 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/extmk.rb | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/ext/extmk.rb b/ext/extmk.rb index d0baa837e..bb32e82f1 100644 --- a/ext/extmk.rb +++ b/ext/extmk.rb @@ -16,7 +16,6 @@ alias $PROGRAM_NAME $0 alias $0 $progname $extlist = [] -$extupdate = false $compiled = {} $:.replace([Dir.pwd]) @@ -129,7 +128,6 @@ def extmake(target) then ok = false init_mkmf - $defs << "-DRUBY_EXPORT" if $static Logging::logfile 'mkmf.log' rm_f makefile if File.exist?($0 = "#{$srcdir}/makefile.rb") @@ -139,7 +137,7 @@ def extmake(target) else create_makefile(target) end - $extupdate = true + $defs << "-DRUBY_EXPORT" if $static ok = File.exist?(makefile) end rescue SystemExit @@ -471,9 +469,6 @@ Dir.chdir ".." unless $destdir.to_s.empty? $mflags.defined?("DESTDIR") or $mflags << "DESTDIR=#{$destdir}" end -if !$extlist.empty? and $extupdate - rm_f(RbConfig::CONFIG["LIBRUBY_SO"]) -end puts "making #{rubies.join(', ')}" $stdout.flush $mflags.concat(rubies) |
