]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
manager: doc: JSON Schema install fix
authorAleš Mrázek <ales.mrazek@nic.cz>
Thu, 29 Sep 2022 08:40:36 +0000 (10:40 +0200)
committerAleš Mrázek <ales.mrazek@nic.cz>
Tue, 10 Jan 2023 18:57:13 +0000 (19:57 +0100)
doc/meson.build

index 482c4701a8dfe584b49489cf5e511b16ed46db46..7595ef805c021209637c4afc00deb389e4daa7c4 100644 (file)
@@ -81,29 +81,14 @@ if get_option('doc') == 'enabled'
 endif
 
 
-python3 = find_program('python3')
-json_schema = custom_target(
-  'doc-json-schema',
-  command: [python3, '-m', 'manager.knot_resolver_manager.cli', 'schema', 'docs/_static/config-schema.json'],
-  input: [
-    
-  ],
-  output: [
-    'docs/_static/config-schema.json'
-  ]
-)
-
-
 make_doc = find_program('../scripts/make-doc.sh')
 run_target(
   'doc',
-  command: make_doc,
-  depends: [json_schema],
+  command: make_doc
 )
 
 
 run_target(
   'doc-strict',
-  command: [make_doc, '-W'],
-  depends: [json_schema],
+  command: [make_doc, '-W']
 )