summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/man-db/files/flex.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-extended/man-db/files/flex.patch')
-rw-r--r--meta/recipes-extended/man-db/files/flex.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/meta/recipes-extended/man-db/files/flex.patch b/meta/recipes-extended/man-db/files/flex.patch
deleted file mode 100644
index c18be7e36a..0000000000
--- a/meta/recipes-extended/man-db/files/flex.patch
+++ /dev/null
@@ -1,36 +0,0 @@
1From d3f7c160bddf5d879c74e19e4f577882e8b22559 Mon Sep 17 00:00:00 2001
2From: Ross Burton <ross.burton@arm.com>
3Date: Wed, 22 Jan 2025 14:16:48 +0000
4Subject: [PATCH] configure: check for shipped generated sources in source
5 directory
6
7The configure script fails if it can't find flex and the pregenerated
8source code isn't available, as is the case in builds from git whereas
9tarballs include the code.
10
11However this breaks with out-of-tree builds, where cwd during configure
12is the build directory not the source directory, and the pregenerated
13sources will always be inside the source directory.
14
15Upstream-Status: Submitted [https://gitlab.com/man-db/man-db/-/merge_requests/12]
16Signed-off-by: Ross Burton <ross.burton@arm.com>
17---
18 configure.ac | 2 +-
19 1 file changed, 1 insertion(+), 1 deletion(-)
20
21diff --git a/configure.ac b/configure.ac
22index 7e9148fb..49a213fd 100644
23--- a/configure.ac
24+++ b/configure.ac
25@@ -380,7 +380,7 @@ dnl To add more decompressors just follow the scheme above.
26 dnl The "noyywrap" argument is new in Autoconf 2.70, but this also works
27 dnl fine with older versions that ignore the argument.
28 AC_PROG_LEX([noyywrap])
29-if test "$LEX" = ":" && (test ! -e src/lexgrog.c || test ! -e src/zsoelim.c)
30+if test "$LEX" = ":" && (test ! -e $srcdir/src/lexgrog.c || test ! -e $srcdir/src/zsoelim.c)
31 then
32 AC_MSG_ERROR([flex is required when building from revision control])
33 fi
34--
352.43.0
36