diff options
author | dec05eba <dec05eba@protonmail.com> | 2018-10-21 07:24:44 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-07-06 07:39:33 +0200 |
commit | 58fc50700dc0c1cac608979c68fc7e5aaf8874bb (patch) | |
tree | 2648de9a3cc9f538498cc8c00cf88b755492e628 /scripts | |
parent | 2dbd9ec3efae8a3814e6bece0f7ed45038c30380 (diff) |
Fix dep file not used because of wrong path
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/package.py b/scripts/package.py index 6e861d9..de2f976 100755 --- a/scripts/package.py +++ b/scripts/package.py @@ -22,7 +22,7 @@ $DOWNLOAD_DEPENDENCIES_COMMAND "$script_dir/$SO_LOADER" --library-path "$script_dir/libs":$HOME/.local/lib/sibs/"$program_full_name":/usr/lib/sibs/"$program_full_name" "$script_dir/$PROGRAM_NAME" "$@" """ -blacklisted_libs = [ re.compile("libGL\\.so.*"), re.compile("libGLX.*"), re.compile("libGLdispatch.*") ] +blacklisted_libs = [ re.compile("libGL\\.so.*"), re.compile("libEGL\\.so.*"), re.compile("libGLX.*"), re.compile("libGLdispatch.*") ] def get_executable_dynamic_libraries(filepath): libs = [] |