summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Berg <bberg@redhat.com>2022-04-28 19:56:36 +0200
committerBenjamin Berg <bberg@redhat.com>2022-04-28 19:56:36 +0200
commitcdf730cd860fd54554e3280ec5a0350a293d74e1 (patch)
tree3d6768aab40824d8043fbe86d1975aa68d145d7d
parentf6ec5ecb6ef68272392a7e950b3f60194c42f1ee (diff)
downloadlibgudev-benzea/fix-devhelp.tar.gz
docs: Fix inconsistencies in install directory and filenamesbenzea/fix-devhelp
These inconsistencies caused devhelp to not find the documentation. Change things to package_name so that the install location stays consistent.
-rw-r--r--docs/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/meson.build b/docs/meson.build
index 7d42e48..63a54ba 100644
--- a/docs/meson.build
+++ b/docs/meson.build
@@ -31,13 +31,13 @@ libgudev_reference_mkdb_args = [
]
libgudev_reference_fixxref_args = [
- '--html-dir=@0@'.format(join_paths(gtkdocdir, 'html', package_string)),
+ '--html-dir=@0@'.format(join_paths(gtkdocdir, 'html', package_name)),
'--extra-dir=@0@'.format(glib_docpath),
'--extra-dir=@0@'.format(gobject_docpath),
]
gnome.gtkdoc(
- package_string,
+ package_name,
main_xml: 'gudev-docs.xml',
gobject_typesfile: files('gudev.types'),
src_dir: libgudev_reference_source_folders,