From 35850cc88d803bf1e5d051e77a84fe2c90720c3e Mon Sep 17 00:00:00 2001 From: Aki Tuomi Date: Mon, 14 Jan 2019 14:31:38 +0200 Subject: [PATCH] m4: Fix moduledir to point to correct place --- m4/dovecot.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/m4/dovecot.m4 b/m4/dovecot.m4 index 7643f79..b5826e1 100644 --- a/m4/dovecot.m4 +++ b/m4/dovecot.m4 @@ -236,8 +236,8 @@ AC_DEFUN([AC_CC_F_STACK_PROTECTOR],[ AC_DEFUN([DC_DOVECOT_MODULEDIR],[ AC_ARG_WITH(moduledir, [ --with-moduledir=DIR Base directory for dynamically loadable modules], - moduledir="$withval", - moduledir=$libdir/dovecot + [moduledir="$withval"] , + [moduledir="$dovecot_moduledir"] ) AC_SUBST(moduledir) ])