From: Yu Watanabe Date: Mon, 4 Jan 2021 08:33:47 +0000 (+0900) Subject: meson: drop unnecessary variable declarations X-Git-Tag: v248-rc1~304^2~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4fc47fa82a8b908dc31f618687001f0315f0da4f;p=thirdparty%2Fsystemd.git meson: drop unnecessary variable declarations --- diff --git a/src/resolve/meson.build b/src/resolve/meson.build index 25782606b55..6cd62b848e2 100644 --- a/src/resolve/meson.build +++ b/src/resolve/meson.build @@ -116,20 +116,18 @@ libsystemd_resolve_core = static_library( basic_dns_sources, include_directories : includes) -resolved_gperf_c = custom_target( +systemd_resolved_sources += custom_target( 'resolved_gperf.c', input : 'resolved-gperf.gperf', output : 'resolved-gperf.c', command : [gperf, '@INPUT@', '--output-file', '@OUTPUT@']) -resolved_dnssd_gperf_c = custom_target( +systemd_resolved_sources += custom_target( 'resolved_dnssd_gperf.c', input : 'resolved-dnssd-gperf.gperf', output : 'resolved-dnssd-gperf.c', command : [gperf, '@INPUT@', '--output-file', '@OUTPUT@']) -systemd_resolved_sources += [resolved_gperf_c, resolved_dnssd_gperf_c] - systemd_resolved_dependencies = [threads, libgpg_error, libm] if conf.get('ENABLE_DNS_OVER_TLS') == 1 if conf.get('DNS_OVER_TLS_USE_GNUTLS') == 1