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

no need to explicitly specifiy make generator

This commit is contained in:
Charles Lowell 2012-05-08 09:50:22 -05:00
parent e3351e5e8e
commit bffcb98b35
4 changed files with 5 additions and 6 deletions

View file

@ -12,8 +12,7 @@ task :checkout do
sh "git submodule update --init"
Dir.chdir(V8_Source) do
sh "git fetch"
# sh "git checkout #{V8_Version}"
sh "git checkout master"
sh "git checkout #{V8_Version}"
sh "make dependencies"
end
end
@ -29,7 +28,7 @@ task :manual_compile do
require File.expand_path '../ext/libv8/arch.rb', __FILE__
include Libv8::Arch
Dir.chdir(V8_Source) do
sh "make #{libv8_arch}.release GYP_GENERATORS=make"
sh "make #{libv8_arch}.release"
end
end

View file

@ -5,5 +5,5 @@ require File.expand_path '../arch.rb', __FILE__
include Libv8::Arch
Dir.chdir(File.expand_path '../../../vendor/v8', __FILE__) do
puts `make #{libv8_arch}.release GYP_GENERATORS=make`
puts `make #{libv8_arch}.release`
end

View file

@ -1,3 +1,3 @@
module Libv8
VERSION = "3.10.7.0"
VERSION = "3.10.8.0"
end

2
vendor/v8 vendored

@ -1 +1 @@
Subproject commit 09a5564086c71bc40bcfea0e102b3a3f31fc8180
Subproject commit e675a0f1eabf3b3d21d8b18294c73490d830cdd1