Skip to content

Commit

Permalink
Fixed rake build:all; rake build in light of rcompile obsolescence *G…
Browse files Browse the repository at this point in the history
…LARES AT BRIXEN*
  • Loading branch information
Mae committed Jan 6, 2007
1 parent 31b7439 commit 6119e2a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Rakefile
Expand Up @@ -185,7 +185,7 @@ namespace :build do
desc "Build the kernel."
task :kernel => 'build:setup:kernel' do
puts "Compiling kernel.rb..."
`bin/rcompile lib/kernel.rb`
`bin/obsolete.rcompile lib/kernel.rb`
end

desc "Build the kernel."
Expand Down Expand Up @@ -213,12 +213,12 @@ namespace :build do
dest = File.join("native", file)
FileUtils.mkdir_p dest_dir
FileUtils.symlink path, dest rescue nil
sh "bin/rcompile #{dest}"
sh "bin/obsolete.rcompile #{dest}"
end

extra = %w!bytecode/rubinius!
extra.each do |name|
sh "bin/rcompile native/#{name}.rb"
sh "bin/obsolete.rcompile native/#{name}.rb"
end
end
end
Expand Down

0 comments on commit 6119e2a

Please sign in to comment.