Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
diff -Naur a/src/cmdliner_docgen.ml b/src/cmdliner_docgen.ml
--- a/src/cmdliner_docgen.ml 2019-06-14 09:55:03.000000000 +0000
+++ b/src/cmdliner_docgen.ml 2019-11-21 14:29:33.000000000 +0000
@@ -146,7 +146,7 @@
@@ -146,7 +146,8 @@
| Cmdliner_info.Val v ->
match Lazy.force v with
| "" -> strf "%s" (or_env ~value:false a)
- | v -> strf "absent=%s%s" v (or_env ~value:true a)
+ | v -> strf "absent=%s%s" (esc v) (or_env ~value:true a)
+
in
let optvopt = match Cmdliner_info.arg_opt_kind a with
| Cmdliner_info.Opt_vopt v -> strf "default=%s" v
3 changes: 2 additions & 1 deletion src_ext/patches/extlib/extlib-1.7.5.patch
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
diff -Naur a/src/configure.ml b/src/configure.ml
--- a/src/configure.ml 2021-01-19 23:51:04.000000000 +0000
+++ b/src/configure.ml 2021-07-22 11:07:11.000000000 +0000
@@ -1,15 +1,21 @@
@@ -1,15 +1,22 @@
open Printf

let show_bytes s =
- let (_:int) = Sys.command (sprintf "ocamlfind query -format %s bytes" (Filename.quote s)) in ()
+ if Sys.command (sprintf "ocamlfind query -format %s bytes" (Filename.quote s)) <> 0 then
+ print_endline "WITH_DUMMY"
+
+
+let define v =
+ print_endline "-D";
+ print_endline v
Expand Down