You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The xz package provides versioned SOs, /usr/lib/liblzma.so.5 and /usr/lib/liblzma.5.4.4, but it does not provide /usr/lib/liblzma.so. This breaks any tooling that looks up liblzma.so without a version, such as through autotools.
This was found on a docker image based on azurelinuxpreview.azurecr.io/public/azurelinux/base/core:3.0 with no additional packages installed.
To Reproduce
Steps to reproduce the behavior:
Run docker run --rm -it azurelinuxpreview.azurecr.io/public/azurelinux/base/core:3.0 bash
In the container, run ls /usr/lib/liblzma.so*
Expected behavior
There should be three files, liblzma.so, liblzma.so.5 and liblzma.so.5.4.4, where they each symlink (possibly transitively) to liblzma.so.5.4.4
The text was updated successfully, but these errors were encountered:
Describe the bug
The xz package provides versioned SOs,
/usr/lib/liblzma.so.5
and/usr/lib/liblzma.5.4.4
, but it does not provide/usr/lib/liblzma.so
. This breaks any tooling that looks up liblzma.so without a version, such as through autotools.This was found on a docker image based on azurelinuxpreview.azurecr.io/public/azurelinux/base/core:3.0 with no additional packages installed.
To Reproduce
Steps to reproduce the behavior:
docker run --rm -it azurelinuxpreview.azurecr.io/public/azurelinux/base/core:3.0 bash
ls /usr/lib/liblzma.so*
Expected behavior
There should be three files,
liblzma.so
,liblzma.so.5
andliblzma.so.5.4.4
, where they each symlink (possibly transitively) toliblzma.so.5.4.4
The text was updated successfully, but these errors were encountered: