Merge pull request #38717 from ChengCat/local

racket: fix LD_LIBRARY_PATH
This commit is contained in:
Yegor Timoshenko 2018-04-11 10:08:59 +00:00 committed by GitHub
commit 4f03a0cac9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -74,7 +74,7 @@ stdenv.mkDerivation rec {
postInstall = ''
for p in $(ls $out/bin/) ; do
wrapProgram $out/bin/$p --set LD_LIBRARY_PATH "${LD_LIBRARY_PATH}";
wrapProgram $out/bin/$p --prefix LD_LIBRARY_PATH ":" "${LD_LIBRARY_PATH}";
done
'';