From 3b72817950d8ecc56ac3df9f9911e79993f2a868 Mon Sep 17 00:00:00 2001 From: Glenn Strauss Date: Sat, 4 Feb 2023 18:21:09 -0500 Subject: [autotools] fix typo in -I used --with-pcre2=/path (fixes #3190) (thx giliy) x-ref: "[PATCH] --with-pcre2 configured to incorrect path" https://redmine.lighttpd.net/issues/3190 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 8aa15dad..8abf56e0 100644 --- a/configure.ac +++ b/configure.ac @@ -890,7 +890,7 @@ AC_MSG_RESULT([$WITH_PCRE2]) if test "$WITH_PCRE2" != no && test "$WITH_PCRE" = "no"; then if test "$WITH_PCRE2" != yes; then PCRE_LIB="-L$WITH_PCRE2/lib -lpcre2-8" - CPPFLAGS="$CPPFLAGS -I$WITH_PCRE/include" + CPPFLAGS="$CPPFLAGS -I$WITH_PCRE2/include" else PKG_CHECK_MODULES([PCRE2],[libpcre2-8],[ PCRE_LIB="$PCRE2_LIBS" -- cgit v1.2.1