-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
fix(libselinux): add patch to link with pcre2 from conan instead of o… #19123
fix(libselinux): add patch to link with pcre2 from conan instead of o… #19123
Conversation
I detected other pull requests that are modifying libselinux/all recipe: This message is automatically generated by https://github.com/ericLemanissier/conan-center-conflicting-prs so don't hesitate to report issues/improvements there. |
This comment has been minimized.
This comment has been minimized.
What about this failure? Is someone taking care? |
@RubenRBS |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
2 similar comments
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
3 similar comments
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
There was conflict in this PR. |
Conan v1 pipeline ✔️All green in build 10 (
Conan v2 pipeline ✔️
All green in build 2 (
|
…ne from system
Specify library name and version: libselinux/3.3
Problem:
On my centos 7.9 docker image, I have not libpcre2-8.so installed.
When package libselinux build, utils executables failed to link with libselinux because libpcre2-8 is not found.
Explication:
In the libselinux Makefile, libselinux.so library link with libpcre2-8.so.
Then executables in utils sub-directory are compiled and linked with libselinux.so. But on link command line, no information were provide to find libselinux dependencies (ex: -L/path/to/pcre2/lib_directory), so linker look for libpcre2 on the system, and this work fine in many case ... excepted when libpcre2-8.so in not installed on the system
Solution:
Provided information to linker to find libselinux dependencies.
Info:
Executables in utils sub-directory are not installed in libselinux package, so we could :
thought ?