0001-Fix-typo-in-configure-in-when-testing-for-use_pcre.patch 755 B

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