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/manual/src/contributing/meson.build | |
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/manual/src/contributing/meson.build')
-rw-r--r-- | doc/manual/src/contributing/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
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', |