]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
meson/daemon/lua: install trust_anchors.lua
authorTomas Krizek <tomas.krizek@nic.cz>
Fri, 25 Jan 2019 13:33:03 +0000 (14:33 +0100)
committerTomas Krizek <tomas.krizek@nic.cz>
Tue, 12 Mar 2019 09:41:49 +0000 (10:41 +0100)
daemon/lua/meson.build

index d891440e0a00ee36b1c5dd43c34a568d152517ee..42005889814a1990a89c9f482fceca39b7d12a88 100644 (file)
@@ -1,19 +1,9 @@
 lua_modules_daemon = [
   'kres',
   'kres-gen',
-  'trust_anchors',
   'zonefile',
 ]
 
-
-# trust_anchors.lua
-configure_file(
-  input: 'trust_anchors.lua.in',
-  output: 'trust_anchors.lua',
-  configuration: config
-)
-
-
 # install lua modules
 foreach mod : lua_modules_daemon
   install_data(
@@ -23,6 +13,15 @@ foreach mod : lua_modules_daemon
 endforeach
 
 
+# trust_anchors.lua
+configure_file(
+  input: 'trust_anchors.lua.in',
+  output: 'trust_anchors.lua',
+  configuration: config,
+  install_dir: modules_dir,
+)
+
+
 if get_option('daemon')
   # dependencies for embedding lua
   xxd = find_program('xxd', required: false)