diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-01-25 22:33:33 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-02-09 02:20:42 +0100 |
commit | c65eb8365344eeb72ee2c0b333ab54d925263b3f (patch) | |
tree | d401f8fb3fc9bd51af74e3a6ddfec571c85f6b5c /Makefile.am | |
parent | 97b5f608182773d7ef9ca18913085b3a3eccd943 (diff) |
shutdown: issue a sync() as soon as shutdown.target is queued
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index f912c5dd52..2b7d78ccf5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -853,7 +853,9 @@ libsystemd_core_la_SOURCES = \ src/core/syscall-list.c \ src/core/syscall-list.h \ src/core/audit-fd.c \ - src/core/audit-fd.h + src/core/audit-fd.h \ + src/core/sync.c \ + src/core/sync.h if HAVE_KMOD libsystemd_core_la_SOURCES += \ @@ -873,7 +875,8 @@ libsystemd_core_la_CFLAGS = \ $(LIBWRAP_CFLAGS) \ $(PAM_CFLAGS) \ $(AUDIT_CFLAGS) \ - $(KMOD_CFLAGS) + $(KMOD_CFLAGS) \ + -pthread libsystemd_core_la_LIBADD = \ libsystemd-capability.la \ |