diff options
author | Jade Lovelace <lix@jade.fyi> | 2024-08-11 20:57:43 -0700 |
---|---|---|
committer | Jade Lovelace <lix@jade.fyi> | 2024-08-18 15:19:15 -0700 |
commit | 84543b459c16b711b74af4990f95c092f18da5d4 (patch) | |
tree | 0c8bc7e69717a75757a01522e8896a8fab5a57d9 /doc | |
parent | 007211e7a27a512cb343060e8b363c9f66ef67af (diff) |
doc: fix broken meson deps for various manuals outputs
This is incredibly haunted, but it can happen that you change libutil,
breaking the generation of the .json files, which then does not rebuild
the files. I don't expect they are slow to build, so it does not seem so
bad to just rebuild them every time instead of extracting a list of all
the possible deps.
We want to delete this nonsense anyway and replace it with generated
code.
Change-Id: Ia576d1a3bdee48fbaefbb5ac194354428d179a84
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual/meson.build | 8 | ||||
-rw-r--r-- | doc/manual/src/command-ref/meson.build | 8 | ||||
-rw-r--r-- | doc/manual/src/contributing/meson.build | 2 |
3 files changed, 10 insertions, 8 deletions
diff --git a/doc/manual/meson.build b/doc/manual/meson.build index 1bdbba77e..f53d41b5d 100644 --- a/doc/manual/meson.build +++ b/doc/manual/meson.build @@ -20,6 +20,8 @@ conf_file_json = custom_target( capture : true, output : 'conf-file.json', env : nix_env_for_docs, + # FIXME: put the actual lib targets in here? meson have introspection challenge 2024 though. + build_always_stale : true, ) nix_conf_file_md_body = custom_target( @@ -50,6 +52,8 @@ nix_exp_features_json = custom_target( command : [ nix, '__dump-xp-features' ], capture : true, output : 'xp-features.json', + # FIXME: put the actual lib targets in here? meson have introspection challenge 2024 though. + build_always_stale : true, ) language_json = custom_target( @@ -57,6 +61,8 @@ language_json = custom_target( output : 'language.json', capture : true, env : nix_env_for_docs, + # FIXME: put the actual lib targets in here? meson have introspection challenge 2024 though. + build_always_stale : true, ) nix3_cli_json = custom_target( @@ -64,6 +70,8 @@ nix3_cli_json = custom_target( capture : true, output : 'nix.json', env : nix_env_for_docs, + # FIXME: put the actual lib targets in here? meson have introspection challenge 2024 though. + build_always_stale : true, ) generate_manual_deps = files( diff --git a/doc/manual/src/command-ref/meson.build b/doc/manual/src/command-ref/meson.build index ef6f9d2e0..f66ee0d39 100644 --- a/doc/manual/src/command-ref/meson.build +++ b/doc/manual/src/command-ref/meson.build @@ -1,9 +1,3 @@ -xp_features_json = custom_target( - command : [nix, '__dump-xp-features'], - capture : true, - output : 'xp-features.json', -) - experimental_features_shortlist_md = custom_target( command : nix_eval_for_docs + [ '--expr', @@ -11,7 +5,7 @@ experimental_features_shortlist_md = custom_target( ], input : [ '../../generate-features-shortlist.nix', - xp_features_json, + nix_exp_features_json, ], capture : true, output : 'experimental-features-shortlist.md', diff --git a/doc/manual/src/contributing/meson.build b/doc/manual/src/contributing/meson.build index 8c76a6206..da88ca146 100644 --- a/doc/manual/src/contributing/meson.build +++ b/doc/manual/src/contributing/meson.build @@ -8,7 +8,7 @@ experimental_feature_descriptions_md = custom_target( ], input : [ '../../generate-features.nix', - xp_features_json, + nix_exp_features_json, ], capture : true, output : 'experimental-feature-descriptions.md', |