Skip to content
This repository was archived by the owner on Dec 4, 2023. It is now read-only.

Commit 9d1bc41

Browse files
committed
Fix binary gem creation
1 parent 35154fd commit 9d1bc41

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

Rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ task :binary => :compile do
4343
# We don't need most things for the binary
4444
gemspec.files = []
4545
gemspec.files += ['lib/libv8.rb', 'lib/libv8/version.rb']
46-
gemspec.files += ['ext/libv8/arch.rb', 'ext/libv8/location.rb', 'ext/libv8/paths.rb']
46+
gemspec.files += ['ext/libv8/location.rb', 'ext/libv8/paths.rb']
4747
gemspec.files += ['ext/libv8/.location.yml']
4848

4949
# V8
5050
gemspec.files += Dir['vendor/v8/include/**/*.h']
51-
gemspec.files += Dir['vendor/v8/out/**/*.a']
51+
gemspec.files += Dir['vendor/v8/out.gn/**/*.a']
5252

5353
FileUtils.chmod 0644, gemspec.files
5454
FileUtils.mkdir_p 'pkg'

ext/libv8/paths.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
require 'rbconfig'
22
require 'shellwords'
3-
require File.expand_path '../arch', __FILE__
43

54
module Libv8
65
module Paths

0 commit comments

Comments
 (0)