-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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 LD_LIBRARY_PATH update #8471
Conversation
After [065d3f5], LD_LIBRARY_PATH is not updated, even when there are *.so inside $addon/lib dirs. Looking into the code: changing LD_LIBRARY_PATH in a set of code between parenthesis will keep the change only inside that scope. I propose replacing the parenthesis.
I would go with this (no need to save all the files in variable because they don't matter).
|
I've proposed this PR to solve the EXPORT not being properly applied, making a simple syntax adjustment by exchanging the "(...)" for a "&&". |
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 have tested and it is now adding the “lib” directories with .so* files.
- cross reference [RFE] enable lib.private via RPATH #7602
@nvdias0 please revert the commit you just pushed. No need to sync this PR up to master. |
I'm sorry, but I don't understand. And I believe I've just deleted the wrong branch. |
There are 2 commits in this branch, the second on e “Merge …” occurred when a sync to master was done. This is the commit that you will need to drop. |
checkout your branch, |
1c82950
to
ef68ba9
Compare
Done. |
After [065d3f5], LD_LIBRARY_PATH is not updated, even when there are *.so inside $addon/lib dirs.
Changing LD_LIBRARY_PATH in a set of code between parenthesis will keep the change only inside that scope.
I propose replacing the parenthesis as follows.