From: Timo Sirainen Date: Fri, 10 Oct 2025 07:26:18 +0000 (+0300) Subject: Makefile: dovecot-config - Expand LIBPCRE_LIBS in LIBDOVECOT X-Git-Tag: 2.4.2~121 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d4504a14074266932eaaf8c2f25e4a41cb111518;p=thirdparty%2Fdovecot%2Fcore.git Makefile: dovecot-config - Expand LIBPCRE_LIBS in LIBDOVECOT Fixes plugin builds: configure: line ...: LIBPCRE_LIBS: command not found --- diff --git a/Makefile.am b/Makefile.am index c8355b04b2..1d5ded142d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -48,6 +48,7 @@ dovecot-config: dovecot-config.in Makefile -e "s|\$$(top_builddir)|$$abs_builddir|g" \ -e "s|\$$(incdir)|$$abs_srcdir|g" \ -e "s|\$$(MODULE_LIBS)|$(MODULE_LIBS)|g" \ + -e "s|\$$(LIBPCRE_LIBS)|$(LIBPCRE_LIBS)|g" \ -e "s|^\(dovecot_pkgincludedir\)=|\1=$(pkgincludedir)|" \ -e "s|^\(dovecot_pkglibdir\)=|\1=$(pkglibdir)|" \ -e "s|^\(dovecot_pkglibexecdir\)=|\1=$(libexecdir)/dovecot|" \