From 92bf5af6d595c066432ab988336a35e3a514b397 Mon Sep 17 00:00:00 2001 From: Bruno Lopes Date: Wed, 13 Aug 2025 21:46:22 -0300 Subject: [PATCH] build/windows: Add comment inside *_sym.py script explaning its situation While it is already explained on meson.build, it is desirable to explain inside the script too in the case someone browse the files. (cherry picked from commit 1730c621873aeb96a0be7c669f8ee99d476d14aa) --- build/windows/2_bundle-gimp-uni_sym.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build/windows/2_bundle-gimp-uni_sym.py b/build/windows/2_bundle-gimp-uni_sym.py index 0ab961ae0a..2acc11447b 100644 --- a/build/windows/2_bundle-gimp-uni_sym.py +++ b/build/windows/2_bundle-gimp-uni_sym.py @@ -3,6 +3,9 @@ import os import shutil import fnmatch +# This .py script should not even exist +# Ideally meson should take care of it automatically. +# See: https://github.com/mesonbuild/meson/issues/12977 for build_root, _, build_bins in os.walk(os.getenv("MESON_BUILD_ROOT")): for file in build_bins: if fnmatch.fnmatch(file, '*.dll') or fnmatch.fnmatch(file, '*.exe'):