File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ if (supported_os.indexOf(process.platform) < 0) {
24
24
}
25
25
var is_windows = process . platform === "win32" ;
26
26
27
- process . env . BS_RELEASE_BUILD = "true" ;
27
+
28
28
29
29
var ninja_bin_output = path . join ( root_dir , process . platform , "ninja.exe" ) ;
30
30
@@ -38,6 +38,7 @@ function provideNinja() {
38
38
var ninja_source_dir = path . join ( root_dir , "vendor" , "ninja" ) ;
39
39
function build_ninja ( ) {
40
40
console . log ( `building ninja` ) ;
41
+ ensureExists ( ninja_source_dir ) ;
41
42
cp . execSync ( `tar xzvf ../ninja.tar.gz` , {
42
43
cwd : ninja_source_dir ,
43
44
stdio : [ 0 , 1 , 2 ]
Original file line number Diff line number Diff line change @@ -1613,7 +1613,7 @@ rule gcc
1613
1613
command = $ocamlopt -ccopt -fPIC -ccopt -O2 -ccopt -o -ccopt $out -c $in
1614
1614
build stubs/ext_basic_hash_stubs.o : gcc stubs/ext_basic_hash_stubs.c
1615
1615
rule ocamlmklib
1616
- command = $ocamlmklib $in -o $name
1616
+ command = $ocamlmklib -v $in -o $name && touch $out
1617
1617
1618
1618
rule mk_keywords
1619
1619
command = $ocaml $in
You can’t perform that action at this time.
0 commit comments