-
Notifications
You must be signed in to change notification settings - Fork 17
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
passwdqc: Remove relative path #17
base: main
Are you sure you want to change the base?
Conversation
using relative paths causes issues with symlink we can install and make a symlink in the same directory "/usr/lib"
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.
Unfortunately, this breaks setups when SHARED_LIBDIR
!= DEVEL_LIBDIR
.
You can omit the relative part if and only if SHARED_LIBDIR
== DEVEL_LIBDIR
.
Sorry, I didn't get the scenario of SHARED_LIBDIR & DEVEL_LIBDIR, where it gonna break? Despite, is there any specific reason for having the libpasswdqc.so.1 in /usr/lib and making a smylink libpasswdqc.so in /lib? |
What issues? |
in my case, I maintain a toolchain directory where /usr was symlinked to the (.) current directory. |
Hi, any update on merge! |
@rprasanth This should not be merged as-is because it |
@rprasanth I think a better fix would be to make the |
using relative paths causes issues with symlink
we can install and make a symlink in the same directory "/usr/lib"