Skip to content

Commit e38a6d6

Browse files
committed
Fix C flag declaration for Dune 2.7.0
Otherwise, the string "-I ." is directly passed to `gcc` which makes it ignore the flag.
1 parent af90d72 commit e38a6d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dune

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
(library
22
(public_name zxcvbn)
33
(c_names zxcvbn_stubs zxcvbn)
4-
(c_flags (:standard "-I ."))
4+
(c_flags (:standard -I .))
55
(preprocess
66
(pps
77
ppx_deriving.std

0 commit comments

Comments
 (0)