summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-04-10 17:35:21 -0400
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-04-23 21:47:27 -0400
commit09cef4e7cc1e73f5fad0dbf9309832f5c1f28ffe (patch)
tree1a97cb6e5aed95d31d11e03f1054f6d18804198a
parent826472ce367cb93c64cc80225cab3fe5fd687363 (diff)
meson: fix compilation of libsystemd
It uses libsystemd_journal_internal_sources, so we need to make sure that audit_type-to-name.h is generated early enough.
-rw-r--r--src/journal/meson.build3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/journal/meson.build b/src/journal/meson.build
index b05db85a43..f06b564c19 100644
--- a/src/journal/meson.build
+++ b/src/journal/meson.build
@@ -45,12 +45,13 @@ audit_type_to_name = custom_target(
command : [awk, '-f', '@INPUT0@', '@INPUT1@'],
capture : true)
+libsystemd_journal_internal_sources += [audit_type_to_name]
+
############################################################
libsystemd_journal_internal = static_library(
'systemd-journal-internal',
libsystemd_journal_internal_sources,
- audit_type_to_name,
gcrypt_util_sources,
install : false,
include_directories : includes,