From 96e767334802db7a8dd71304c5fd3ff82ddee385 Mon Sep 17 00:00:00 2001 From: Bruno Lopes Date: Thu, 15 Feb 2024 18:31:45 -0300 Subject: [PATCH] build/windows: (Finally) Drop lua5.1 in ARM This become unnoticed in !1171 and was breaking .lua plug-ins use in ARM installs. See: https://gitlab.gnome.org/GNOME/gimp/-/issues/10554#note_2014768 --- build/windows/installer/base_gimp3264.iss | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/build/windows/installer/base_gimp3264.iss b/build/windows/installer/base_gimp3264.iss index 010a11f8cf..999acb7772 100644 --- a/build/windows/installer/base_gimp3264.iss +++ b/build/windows/installer/base_gimp3264.iss @@ -860,13 +860,7 @@ begin InterpFile := ExpandConstant('{app}\lib\gimp\{#DIR_VER}\interpreters\lua.interp'); DebugMsg('PrepareInterp','Writing interpreter file for lua: ' + InterpFile); - if IsComponentSelected('gimpARM64') then - begin - LuaBin := 'lua5.1.exe' - end else - begin - LuaBin := 'luajit.exe' - end; + LuaBin := 'luajit.exe' InterpContent := 'lua=' + ExpandConstant('{app}\bin\') + LuaBin + #10 + 'luajit=' + ExpandConstant('{app}\bin\') + LuaBin + #10 +