summaryrefslogtreecommitdiff
path: root/docs/api
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2019-11-21 15:27:21 +0100
committerThomas Haller <thaller@redhat.com>2019-11-22 15:59:31 +0100
commit6d7270e222cce3edaf95c463bec9f3212f5e5c73 (patch)
treea705c53a638cb543ec89f1acfb862e7e958dca9d /docs/api
parent18c5ce50fbd40534cdd7d8e46277e89b7e7b5dd3 (diff)
downloadNetworkManager-6d7270e222cce3edaf95c463bec9f3212f5e5c73.tar.gz
build/meson: cleanup configuration_data() for paths
We don't need such data duplicated. The build setup should have only one configuration_data() for patching such values. Now we only have one global, immutable data_conf dictionary with configuration values. Note that none of the users of data_conf uses all entries, but as the entries are basically only dependent on the meson/configure option and valid for the entire project, this simplifies to handling.
Diffstat (limited to 'docs/api')
-rw-r--r--docs/api/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api/meson.build b/docs/api/meson.build
index dde1eecb03..30f82188f9 100644
--- a/docs/api/meson.build
+++ b/docs/api/meson.build
@@ -19,7 +19,7 @@ endif
content_files += configure_file(
input: 'version.xml.in',
output: '@BASENAME@',
- configuration: version_conf,
+ configuration: data_conf,
)
filecopier = find_program('cp')