File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,12 @@ def run_command(command, error_message):
5757 f"Collecting pixbuf-loader ({ loader } ) DLLs failed"
5858 )
5959
60+ for enchant_provider in glob .glob (f"{ build_environment_path } /lib/enchant-2/*.dll" ):
61+ run_command (
62+ f"ldd { enchant_provider } | grep '\\ /mingw.*\.dll' -o | xargs -i cp {{}} { dlls_dir } " ,
63+ f"Collecting enchant provider ({ enchant_provider } ) DLLs failed" ,
64+ )
65+
6066for angle_dll in itertools .chain (
6167 glob .glob (f"{ build_environment_path } /bin/libEGL*.dll" ),
6268 glob .glob (f"{ build_environment_path } /bin/libGLES*.dll" ),
Original file line number Diff line number Diff line change @@ -57,6 +57,8 @@ Source: "{#meson_build_root}\dlls\*.dll"; DestDir: "{app}\bin"; Flags: ignorever
5757
5858; gdk-pixbuf loaders
5959Source: "{#build_environment_path}\lib\gdk-pixbuf-2.0\*"; DestDir: "{app}\lib\gdk-pixbuf-2.0"; Flags: ignoreversion recursesubdirs createallsubdirs
60+ ; enchant providers
61+ Source: "{#build_environment_path}\lib\enchant-2\*"; DestDir: "{app}\lib\enchant-2"; Flags: ignoreversion recursesubdirs createallsubdirs
6062; poppler-data
6163Source: "{#build_environment_path}\share\poppler\*"; DestDir: "{app}\share\poppler"; Flags: ignoreversion recursesubdirs createallsubdirs
6264; Settings GSchema
You can’t perform that action at this time.
0 commit comments