]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
auth: Makefile dependency fix
authorTimo Sirainen <timo.sirainen@dovecot.fi>
Tue, 3 May 2016 14:43:00 +0000 (17:43 +0300)
committerGitLab <gitlab@git.dovecot.net>
Fri, 6 May 2016 12:38:40 +0000 (15:38 +0300)
Hopefully fixes:
mv: cannot stat '.deps/auth-stats.Tpo': No such file or directory

src/auth/Makefile.am

index 4ba6bee12a52990c610c6402e23ec4bacc73e4f6..574b854899a16c551a85e0bfbc42778c451cd8bc 100644 (file)
@@ -51,6 +51,7 @@ libpassword_a_SOURCES = \
        password-scheme-pbkdf2.c
 
 auth_libs = \
+       libstats_auth.la \
        libpassword.a \
        ../lib-ntlm/libntlm.a \
        ../lib-otp/libotp.a \
@@ -75,7 +76,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 \
@@ -205,9 +205,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 \