Skip to content

Commit

Permalink
auth: Makefile dependency fix
Browse files Browse the repository at this point in the history
Hopefully fixes:
mv: cannot stat '.deps/auth-stats.Tpo': No such file or directory
  • Loading branch information
sirainen committed May 11, 2016
1 parent b96fdd9 commit 8ed85e0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/auth/Makefile.am
Expand Up @@ -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 \
Expand All @@ -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 \
Expand Down Expand Up @@ -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 \
Expand Down

0 comments on commit 8ed85e0

Please sign in to comment.