From 973c2dd710cc56ceecadcadcf3bf1715d7420633 Mon Sep 17 00:00:00 2001 From: Jehan Date: Thu, 25 Apr 2024 01:13:38 +0200 Subject: [PATCH] meson: fixing the datadir/libdir/sysconfdir. As noticd by Bruno, the meson port is inconsistent with our 2.10 autotools build here too (and therefore our data path standards). Fixing. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 6e52ebb5f3..f478092180 100644 --- a/meson.build +++ b/meson.build @@ -1310,7 +1310,7 @@ if gimpdir == '' gimpdir = meson.project_name().to_upper() endif -project_subdir = meson.project_name() / gimp_app_version +project_subdir = meson.project_name() / gimp_api_version gimpdatadir = get_option('datadir') / project_subdir gimpplugindir = get_option('libdir') / project_subdir gimpsysconfdir = get_option('sysconfdir') / project_subdir