Skip to content

Commit 554b4b1

Browse files
committed
Fix CI
1 parent a514f08 commit 554b4b1

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

jscomp/bsb/bsb_ninja_rule.ml

+3-2
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,9 @@ let make_custom_rules
152152
(* The include order matters below *)
153153
if is_dev then
154154
Ext_buffer.add_char_string buf ' ' dev_incls;
155-
Ext_buffer.add_char_string buf ' ' lib_incls;
156-
Ext_buffer.add_char_string buf ' ' dpkg_incls;
155+
Ext_buffer.add_char_string buf ' ' lib_incls;
156+
if is_dev then
157+
Ext_buffer.add_char_string buf ' ' dpkg_incls;
157158
if not has_builtin then
158159
Ext_buffer.add_string buf " -nostdlib";
159160
Ext_buffer.add_char_string buf ' ' warnings;

lib/4.06.1/bsb.ml

+3-2
Original file line numberDiff line numberDiff line change
@@ -13205,8 +13205,9 @@ let make_custom_rules
1320513205
(* The include order matters below *)
1320613206
if is_dev then
1320713207
Ext_buffer.add_char_string buf ' ' dev_incls;
13208-
Ext_buffer.add_char_string buf ' ' lib_incls;
13209-
Ext_buffer.add_char_string buf ' ' dpkg_incls;
13208+
Ext_buffer.add_char_string buf ' ' lib_incls;
13209+
if is_dev then
13210+
Ext_buffer.add_char_string buf ' ' dpkg_incls;
1321013211
if not has_builtin then
1321113212
Ext_buffer.add_string buf " -nostdlib";
1321213213
Ext_buffer.add_char_string buf ' ' warnings;

0 commit comments

Comments
 (0)