This repository was archived by the owner on Dec 4, 2023. It is now read-only.
File tree Expand file tree Collapse file tree
release/x86_64-freebsd-11 Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -110,15 +110,15 @@ def setup_build_deps!
110110 ENV [ 'PATH' ] = "#{ File . expand_path ( '../../../vendor/depot_tools' , __FILE__ ) } :#{ ENV [ 'PATH' ] } "
111111 Dir . chdir ( File . expand_path ( '../../../vendor' , __FILE__ ) ) do
112112 unless Dir . exists? 'v8'
113- system "fetch v8" or fail "unable to fetch v8 source"
113+ system "env #{ gyp_defines } fetch v8" or fail "unable to fetch v8 source"
114114 else
115- system "gclient fetch" or fail "could not fetch v8 build dependencies commits"
115+ system "env #{ gyp_defines } gclient fetch" or fail "could not fetch v8 build dependencies commits"
116116 end
117117 Dir . chdir ( 'v8' ) do
118118 unless system "git checkout #{ source_version } "
119119 fail "unable to checkout source for v8 #{ source_version } "
120120 end
121- system "gclient sync" or fail "could not sync v8 build dependencies"
121+ system "env #{ gyp_defines } gclient sync" or fail "could not sync v8 build dependencies"
122122 system "git checkout Makefile" # Work around a weird bug on FreeBSD
123123 end
124124 end
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Vagrant.configure(2) do |config|
1212
1313 # Every Vagrant development environment requires a box. You can search for
1414 # boxes at https://atlas.hashicorp.com/search.
15- config . vm . box = "freebsd/FreeBSD-11.0-RELEASE-p1 "
15+ config . vm . box = "freebsd/FreeBSD-11.0-STABLE "
1616
1717 # Disable automatic box update checking. If you disable this, then
1818 # boxes will only be checked for updates when the user runs
You can’t perform that action at this time.
0 commit comments