devel-docs: Use API version not app version for install location

In other words, 3.0 instead of 3.2

Pairs with https://gitlab.gnome.org/GNOME/gimp-data/-/merge_requests/45
This commit is contained in:
Jeremy Bícha 2025-12-05 00:02:38 -05:00 committed by Jehan
parent 5b24852e9b
commit fe3418aadc
2 changed files with 2 additions and 2 deletions

View file

@ -35,5 +35,5 @@ gimp_ui_docs = custom_target('gimp-ui-docs',
], ],
build_by_default: true, build_by_default: true,
install: true, install: true,
install_dir: get_option('datadir') / 'doc' / 'gimp-@0@'.format(gimp_app_version), install_dir: get_option('datadir') / 'doc' / 'gimp-' + gimp_api_version,
) )

View file

@ -32,5 +32,5 @@ gimp_docs = custom_target('gimp-docs',
], ],
build_by_default: true, build_by_default: true,
install: true, install: true,
install_dir: get_option('datadir') / 'doc' / 'gimp-@0@'.format(gimp_app_version), install_dir: get_option('datadir') / 'doc' / 'gimp-' + gimp_api_version,
) )