-
-
Notifications
You must be signed in to change notification settings - Fork 55
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
Defect: Resolving library path variable in the generated script setup.sh #629
Comments
@rouson did the fix not work? Is that why you re-opened it? |
@rouson yeah, I just saw your PR. doh! I thought my logic was correct, but you are definitely right; the |
we can create a patch release while you're here. |
rouson
pushed a commit
that referenced
this issue
Mar 19, 2019
rouson
pushed a commit
that referenced
this issue
Mar 19, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Defect/Bug Report
install.sh
uname -a
: Linux v.radia.run 4.18.19-100.fc27.x86_64 tests dis_transpose: test passed #1 SMP Wed Nov 14 22:04:34 UTC 2018 x86_64 x86_64 x86_64 GNU/LinuxObserved Behavior
In my OpenCoarrays setup.sh—which is generated automatically during the build and install process—I see the following stanza:
Expected Behavior
The
${!LD_LIB_P_VAR}
should read$LD_LIBRARY_PATH
.On my machine (a linux VM)
${!LD_LIB_P_VAR}
does not resolve to anything, which means the if test takes the first branch and overwrites the previous contents of$LD_LIBRARY_PATH
. I suspect you need${!LD_LIB_P_VAR}
and its associated logic higher up the chain, but that variable should be resolved to the appropriate value before its written to the generated setup.sh file.While you're at it, you might as well also delete the trailing
/
afterlib64
, so that, for example, the penultimate line readsThe text was updated successfully, but these errors were encountered: