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

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
'';