summaryrefslogtreecommitdiffstats
path: root/modules/dnstap
diff options
context:
space:
mode:
authorTomas Krizek <tomas.krizek@nic.cz>2019-02-21 14:11:33 +0100
committerTomas Krizek <tomas.krizek@nic.cz>2019-03-12 10:43:35 +0100
commit4a5497f6691bfd18f887b09a3fc75dee0e716553 (patch)
treef1d66f95d2ada3bba2c86b21ca7597064382d1c9 /modules/dnstap
parentgitlabci: fix lint:pedantic (diff)
downloadknot-resolver-4a5497f6691bfd18f887b09a3fc75dee0e716553.tar.xz
knot-resolver-4a5497f6691bfd18f887b09a3fc75dee0e716553.zip
gitlabci: fix lint:tidy
Diffstat (limited to 'modules/dnstap')
-rw-r--r--modules/dnstap/meson.build6
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/dnstap/meson.build b/modules/dnstap/meson.build
index 2db216c3..ce1fd85a 100644
--- a/modules/dnstap/meson.build
+++ b/modules/dnstap/meson.build
@@ -1,8 +1,8 @@
# C module: dnstap
-dnstap_src = [
+dnstap_src = files([
'dnstap.c',
-]
+])
## dnstap dependencies
message('--- dnstap module dependencies ---')
@@ -14,6 +14,8 @@ message('----------------------------------')
# build dnstap if deps are found
if libprotobuf_c.found() and libfstrm.found() and protoc_c.found()
+ c_src_lint += dnstap_src
+
# generate protobuf-c sources using protoc-c
dnstap_pb = custom_target(
'dnstap_pb',