We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e52130d + 77e3dd9 commit 9aec3efCopy full SHA for 9aec3ef
1 file changed
lib/jbuild
@@ -8,7 +8,7 @@ let flags = function
8
List.fold_left (fun acc pkg -> acc ^ " -package " ^ pkg) "" pkgs
9
) in
10
let ic = Unix.open_process_in
11
- (cmd ^ " | grep -oEe '-ppx (\"([^\"\\]|\\.)+\"|\w+)'")
+ (cmd ^ " | grep -oEe '-ppx (\"([^\"\\]|\\.)+\"|\\w+)'")
12
in
13
let rec go ic acc =
14
try go ic (acc ^ " " ^ input_line ic) with End_of_file -> close_in ic; acc
@@ -24,7 +24,7 @@ let () = Printf.ksprintf Jbuild_plugin.V1.send {|
24
((name backtrace)
25
(public_name xapi-backtrace)
26
(libraries (ppx_deriving_rpc
27
- ppx_sexp_conv
+ ppx_sexp_conv.runtime-lib
28
rpclib
29
rpclib.json
30
threads
0 commit comments