From 09cef4e7cc1e73f5fad0dbf9309832f5c1f28ffe Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Mon, 10 Apr 2017 17:35:21 -0400 Subject: [PATCH] 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. --- src/journal/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/journal/meson.build b/src/journal/meson.build index b05db85a430..f06b564c19a 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, -- 2.47.3