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
This commit is contained in:
Bruno Lopes 2024-02-15 18:31:45 -03:00
parent 8bb79dc671
commit 96e7673348
1 changed files with 1 additions and 7 deletions

View File

@ -860,13 +860,7 @@ begin
InterpFile := ExpandConstant('{app}\lib\gimp\{#DIR_VER}\interpreters\lua.interp'); InterpFile := ExpandConstant('{app}\lib\gimp\{#DIR_VER}\interpreters\lua.interp');
DebugMsg('PrepareInterp','Writing interpreter file for lua: ' + InterpFile); DebugMsg('PrepareInterp','Writing interpreter file for lua: ' + InterpFile);
if IsComponentSelected('gimpARM64') then LuaBin := 'luajit.exe'
begin
LuaBin := 'lua5.1.exe'
end else
begin
LuaBin := 'luajit.exe'
end;
InterpContent := 'lua=' + ExpandConstant('{app}\bin\') + LuaBin + #10 + InterpContent := 'lua=' + ExpandConstant('{app}\bin\') + LuaBin + #10 +
'luajit=' + ExpandConstant('{app}\bin\') + LuaBin + #10 + 'luajit=' + ExpandConstant('{app}\bin\') + LuaBin + #10 +