Blame SOURCES/0003-customize-Suppress-OCaml-warning.patch

c7c347
From 89617fbe8867254b8c5a77c7fd28ab7746338751 Mon Sep 17 00:00:00 2001
c7c347
From: "Richard W.M. Jones" <rjones@redhat.com>
c7c347
Date: Tue, 5 Oct 2021 20:53:25 +0100
c7c347
Subject: [PATCH] customize: Suppress OCaml warning
c7c347
c7c347
In OCaml 4.13:
c7c347
c7c347
File "perl_edit.ml", line 30, characters 2-13:
c7c347
30 |   c_edit_file (verbose ()) g (Guestfs.c_pointer g) file expr
c7c347
       ^^^^^^^^^^^
c7c347
Error (warning 6 [labels-omitted]): label verbose was omitted in the application of this function.
c7c347
c7c347
(cherry picked from commit a4930f5fad82e5358d565b8cf3610970e9646259)
c7c347
---
c7c347
 m4/guestfs-ocaml.m4 | 2 +-
c7c347
 1 file changed, 1 insertion(+), 1 deletion(-)
c7c347
c7c347
diff --git a/m4/guestfs-ocaml.m4 b/m4/guestfs-ocaml.m4
c7c347
index d2b3804a..8a23877c 100644
c7c347
--- a/m4/guestfs-ocaml.m4
c7c347
+++ b/m4/guestfs-ocaml.m4
c7c347
@@ -166,7 +166,7 @@ EOF
c7c347
 ])
c7c347
 
c7c347
 dnl Flags we want to pass to every OCaml compiler call.
c7c347
-OCAML_WARN_ERROR="-warn-error +C+D+E+F+L+M+P+S+U+V+Y+Z+X+52-3"
c7c347
+OCAML_WARN_ERROR="-warn-error +C+D+E+F+L+M+P+S+U+V+Y+Z+X+52-3-6"
c7c347
 AC_SUBST([OCAML_WARN_ERROR])
c7c347
 OCAML_FLAGS="-g -annot $safe_string_option"
c7c347
 AC_SUBST([OCAML_FLAGS])
c7c347
-- 
c7c347
2.31.1
c7c347