From 36b660e2b22174d234808df0eea6974c94440860 Mon Sep 17 00:00:00 2001 From: Sam James Date: Fri, 20 Jun 2025 16:23:21 +0000 Subject: [PATCH] meson: fix typo on GIMP_TESTING_ENVIRON_DIRS This fixes some "illegal variable" noise in the build. There can't be any dynamically created environment files in the *source* directory, but there may be in the *build* directory we're modifying. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 50c72da673..ebd71fce05 100644 --- a/meson.build +++ b/meson.build @@ -1905,7 +1905,7 @@ if meson.can_run_host_binaries() and have_gobject_introspection gimp_run_env.set('GIMP_TESTING_INTERPRETER_DIRS', meson.global_build_root() / 'plug-ins/python/') gimp_run_env.append('GIMP_TESTING_INTERPRETER_DIRS', meson.global_build_root() / 'extensions/') - gimp_run_env.set('GIMP_TESTING_ENVIRON_DIRS', meson.global_source_root() / 'data/environ/') + gimp_run_env.set('GIMP_TESTING_ENVIRON_DIRS', meson.global_build_root() / 'data/environ/') # Makes build errors output way less polluted, making easier to debug gimp_run_env.set('GIMP3_LOCALEDIR', meson.global_build_root() / 'po-plug-ins')