1
0
Fork 0
mirror of https://github.com/rubyjs/libv8 synced 2023-03-27 23:21:48 -04:00

Replace instances of make in Rakefile with var.

This commit is contained in:
Geoff Garside 2012-05-12 11:38:30 +01:00
parent 3ccb67e2a8
commit ac09ecd8ea

View file

@ -16,7 +16,7 @@ task :checkout do
Dir.chdir(V8_Source) do
sh "git fetch"
sh "git checkout #{V8_Version}"
sh "make dependencies"
sh "#{make} dependencies"
end
end
@ -31,7 +31,7 @@ task :manual_compile do
require File.expand_path '../ext/libv8/arch.rb', __FILE__
include Libv8::Arch
Dir.chdir(V8_Source) do
sh "make -j2 #{libv8_arch}.release"
sh "#{make} -j2 #{libv8_arch}.release"
end
end