-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AppImage: don't package libwayland-client.so.0 #24111
AppImage: don't package libwayland-client.so.0 #24111
Conversation
@@ -208,7 +208,8 @@ function fallback_library() | |||
# Report new additions at https://github.com/linuxdeploy/linuxdeploy/issues | |||
# or https://github.com/linuxdeploy/linuxdeploy-plugin-qt/issues for Qt libs. | |||
unwanted_files=( | |||
# none | |||
# https://github.com/musescore/MuseScore/issues/24068#issuecomment-2297823192 | |||
lib/libwayland-client.so.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It might also be worth mentioning libwayland-client.so.0
(without lib/
prefix) in the fallback_libraries
array further down. This way it will be loaded if it's not found on the system, which could prevent a crash.
You'll need to keep it here in unwanted_files
(with lib/
prefix) so that it doesn't also get packaged in the lib
folder as well as the fallback
folder.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Making it fallback
is potentially only worth doing on the 4.4 branch, whereas excluding it is worth doing on both branches.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll add it to fallback
. Why would that not necessary on master too?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't know for sure that excluding it will cause a crash, so I want to find out one way or the other and then report the outcome to the Linuxdeploy developers.
Resolves: #24068