-
Notifications
You must be signed in to change notification settings - Fork 325
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
patches: openvswitch: don't do groff manpage check
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
patches/packages/packages/0002-openvswitch-disable-groff-manpage-check.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
From: Matthias Schiffer <[email protected]> | ||
Date: Sat, 23 Sep 2023 18:10:30 +0200 | ||
Subject: openvswitch: disable groff manpage check | ||
|
||
The openvswitch build trips over a number of warnings during the | ||
manpage-check step if groff 1.23 is installed on the build host, | ||
resulting in a failed build. | ||
|
||
As this check is optional, and we don't even install the manpages, simply | ||
override the groff configure check to never detect groff. | ||
|
||
Signed-off-by: Matthias Schiffer <[email protected]> | ||
|
||
diff --git a/net/openvswitch/Makefile b/net/openvswitch/Makefile | ||
index 7f47c28226d53a850b7c480c092689cfea904f80..43b8bfaf5586f831df704442fdfa1b541312d3b3 100644 | ||
--- a/net/openvswitch/Makefile | ||
+++ b/net/openvswitch/Makefile | ||
@@ -251,6 +251,7 @@ CONFIGURE_ARGS+= \ | ||
CONFIGURE_VARS += \ | ||
$(if $(CONFIG_OPENVSWITCH_WITH_LIBUNBOUND),,ac_cv_lib_unbound_ub_ctx_create=no) \ | ||
ovs_cv_flake8=no \ | ||
+ ovs_cv_groff=no \ | ||
ovs_cv_python3=$(PYTHON3) \ | ||
ovs_cv_python3_host=$(HOST_PYTHON3_BIN) \ | ||
SPHINXBUILD=none \ |