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

12345678910111213141516171819202122232425
  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. [Retrieved from:
  7. https://github.com/jpr5/ngrep/commit/b8b1e9751e1d074af0dd77c2554c1b25fd8f7abe]
  8. ---
  9. configure.in | 2 +-
  10. 1 file changed, 1 insertion(+), 1 deletion(-)
  11. diff --git a/configure.in b/configure.in
  12. index cff37e9..06c050a 100644
  13. --- a/configure.in
  14. +++ b/configure.in
  15. @@ -146,7 +146,7 @@ AC_ARG_ENABLE(pcre,
  16. [ use_pcre="$enableval" ],
  17. [ use_pcre="no" ])
  18. -if test use_pcre = yes; then
  19. +if test $use_pcre = yes; then
  20. USE_PCRE="1"
  21. EXTRA_LIBS="$EXTRA_LIBS -lpcre"
  22. else