Merge pull request #13215 from chrisroberts/ssl-helper-path

Adjust extension location for correct install path
This commit is contained in:
Chris Roberts 2023-06-21 10:16:47 -07:00 committed by GitHub
commit bdea8f8b16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 2 additions and 3 deletions

View File

@ -7,8 +7,7 @@ require "rake/extensiontask"
$stdout.sync = true $stdout.sync = true
$stderr.sync = true $stderr.sync = true
Rake::ExtensionTask.new "vagrant_ssl" do |ext| Rake::ExtensionTask.new "vagrant/vagrant_ssl" do |ext|
ext.lib_dir = "lib/vagrant"
end end
# Load all the rake tasks from the "tasks" folder. This folder # Load all the rake tasks from the "tasks" folder. This folder

View File

@ -105,6 +105,6 @@ Gem::Specification.new do |s|
s.files = unignored_files s.files = unignored_files
s.executables = unignored_files.map { |f| f[/^bin\/(.*)/, 1] }.compact s.executables = unignored_files.map { |f| f[/^bin\/(.*)/, 1] }.compact
s.extensions = ["ext/vagrant_ssl/extconf.rb"] s.extensions = ["ext/vagrant/vagrant_ssl/extconf.rb"]
s.require_path = 'lib' s.require_path = 'lib'
end end