From: Zbigniew Jędrzejewski-Szmek Date: Mon, 10 Apr 2017 21:35:21 +0000 (-0400) Subject: meson: fix compilation of libsystemd X-Git-Tag: v234~286^2~60 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=09cef4e7cc1e73f5fad0dbf9309832f5c1f28ffe;p=thirdparty%2Fsystemd.git 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. --- 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,