build/windows: Always bundle gspawn*-console.exe (for gimp*.exe --verbose)

Without this, it is not possible to open links when
running gimp*.exe --verbose
This commit is contained in:
Bruno
2024-12-30 21:06:40 -03:00
parent 89cc350348
commit de37e08109

View File

@ -198,10 +198,11 @@ if [ "$GIMP_UNSTABLE" ] && [[ ! "$MSYS_PREFIX" =~ "32" ]]; then
fi
### Needed to not pollute output. See: https://gitlab.gnome.org/GNOME/gimp/-/issues/8877
bundle "$MSYS_PREFIX" bin/gdbus.exe
### Needed for hyperlink support etc. See: https://gitlab.gnome.org/GNOME/gimp/-/issues/12288
if [ "$GIMP_UNSTABLE" ]; then
bundle "$MSYS_PREFIX" bin/gspawn*-console.exe
else
### Needed for hyperlink support etc... See: https://gitlab.gnome.org/GNOME/gimp/-/issues/12288
#...when running from `gimp*.exe --verbose`
bundle "$MSYS_PREFIX" bin/gspawn*-console.exe
if [ -z "$GIMP_UNSTABLE" ]; then
#...when running from `gimp*.exe`
bundle "$MSYS_PREFIX" bin/gspawn*-helper.exe
fi