Skip to content

Commit

Permalink
Experimental fix for AppImage, removing libatspi.so.0 from exclude list
Browse files Browse the repository at this point in the history
  • Loading branch information
jonoomph committed Dec 22, 2024
1 parent 4716b04 commit 123850d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions freeze.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,8 @@ def find_files(directory, patterns):
]:
if os.path.exists(lib_name):
lib_list.append(lib_name)
else:
log.info(f"Skipping {lib_name}, not found")

import subprocess
for library in lib_list:
Expand Down Expand Up @@ -403,8 +405,7 @@ def find_files(directory, patterns):
"libbz2.so.1.0",
"libqxcb.so",
"libxcb-xinerama.so.0",
"libpcre.so.3",
"libatspi.so.0",
"libpcre.so.3"
]:
external_so_files.append((libpath, libpath_file))
else:
Expand Down

0 comments on commit 123850d

Please sign in to comment.