mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-04 09:53:25 +00:00
build/windows: Bundle python.exe even on stable versions (for gimp-console)
This is needed for scripting output with 'gimp-console*.exe', which is included in stable versions (but the user needs to change the .interp). The need to manually change the .interp is ugly as hell (specially for system-wide .exe installer and MSIX package) but a separate issue.
This commit is contained in:
parent
f8436b67cf
commit
89cc350348
1 changed files with 4 additions and 5 deletions
|
@ -215,11 +215,10 @@ if [ "$CI_JOB_NAME" != 'gimp-win-x64-cross' ]; then
|
|||
#bundle "$MSYS_PREFIX" lib/lua
|
||||
#bundle "$MSYS_PREFIX" share/lua
|
||||
|
||||
if [ "$GIMP_UNSTABLE" ]; then
|
||||
#python.exe is prefered in unstable versions because of error output
|
||||
#python.exe is needed for plug-ins output in `gimp-console*.exe`
|
||||
bundle "$MSYS_PREFIX" bin/python.exe
|
||||
else
|
||||
#pythonw.exe is prefered in stable releases because it works silently
|
||||
if [ -z "$GIMP_UNSTABLE" ]; then
|
||||
#pythonw.exe is needed to run plug-ins silently in `gimp*.exe`
|
||||
bundle "$MSYS_PREFIX" bin/pythonw.exe
|
||||
fi
|
||||
bundle "$MSYS_PREFIX" lib/python*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue