From: Timo Sirainen Date: Tue, 3 May 2016 14:43:00 +0000 (+0300) Subject: auth: Makefile dependency fix X-Git-Tag: 2.2.25.rc1~324 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fc0f22ebd30428111592e0a7e404794c6d71f20f;p=thirdparty%2Fdovecot%2Fcore.git auth: Makefile dependency fix Hopefully fixes: mv: cannot stat '.deps/auth-stats.Tpo': No such file or directory --- diff --git a/src/auth/Makefile.am b/src/auth/Makefile.am index 3e00e24662..0fbc56de0b 100644 --- a/src/auth/Makefile.am +++ b/src/auth/Makefile.am @@ -50,6 +50,7 @@ libpassword_a_SOURCES = \ password-scheme-rpa.c auth_libs = \ + libstats_auth.la \ libpassword.a \ ../lib-ntlm/libntlm.a \ ../lib-otp/libotp.a \ @@ -74,7 +75,6 @@ auth_SOURCES = \ auth-request-stats.c \ auth-request-var-expand.c \ auth-settings.c \ - auth-stats.c \ auth-fields.c \ auth-token.c \ auth-worker-client.c \ @@ -204,9 +204,9 @@ stats_moduledir = $(moduledir)/stats stats_module_LTLIBRARIES = libstats_auth.la libstats_auth_la_LDFLAGS = -module -avoid-version -libstats_auth_la_LIBADD = auth-stats.lo $(LIBDOVECOT) -libstats_auth_la_DEPENDENCIES = auth-stats.lo -libstats_auth_la_SOURCES = +libstats_auth_la_LIBADD = $(LIBDOVECOT) +libstats_auth_la_DEPENDENCIES = $(LIBDOVECOT_DEPS) +libstats_auth_la_SOURCES = auth-stats.c test_programs = \ test-auth-cache \