1From b8b1e9751e1d074af0dd77c2554c1b25fd8f7abe Mon Sep 17 00:00:00 2001
2From: Romain Francoise <romain@rfr.io>
3Date: Mon, 1 Jan 2018 18:00:34 +0100
4Subject: [PATCH] Fix typo in configure.in when testing for use_pcre
5
6Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
7[Retrieved from:
8https://github.com/jpr5/ngrep/commit/b8b1e9751e1d074af0dd77c2554c1b25fd8f7abe]
9---
10 configure.in | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/configure.in b/configure.in
14index cff37e9..06c050a 100644
15--- a/configure.in
16+++ b/configure.in
17@@ -146,7 +146,7 @@ AC_ARG_ENABLE(pcre,
18 [ use_pcre="$enableval" ],
19 [ use_pcre="no" ])
20
21-if test use_pcre = yes; then
22+if test $use_pcre = yes; then
23   USE_PCRE="1"
24   EXTRA_LIBS="$EXTRA_LIBS -lpcre"
25 else
26