blob: 691aa3d2ac676bad3cff992b76931ee4e8148361 [file] [log] [blame]
Andrew Geissler4b7c1152020-11-30 19:55:29 -06001From 4d09032741475c4e9d3de62c8187597f3f72f934 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sun, 22 Nov 2020 12:32:01 -0800
4Subject: [PATCH] configure: Check for flex if lex is not found
5
6lex is already checked by this time, therefore check should be to find
7flex
8Upstream-Status: Submitted [https://github.com/pikhq/musl-nscd/pull/12]
9Signed-off-by: Khem Raj <raj.khem@gmail.com>
10---
11 configure | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
13
14diff --git a/configure b/configure
15index 256824a..4c94568 100755
16--- a/configure
17+++ b/configure
18@@ -249,7 +249,7 @@ printf "checking for lex... "
19 trylex ${CROSS_COMPILE}lex
20 trylex lex
21 trylex ${CROSS_COMPILE}flex
22-trylex lex
23+trylex flex
24 printf "%s\n" "$LEX"
25 test -n "$LEX" || echo "$0: cannot find lex. Will try to use pre-provided source."
26
27--
282.29.2
29