lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'pypy'

+6 -1
+6 -1
pkgs/development/interpreters/pypy/default.nix
··· 100 100 ln -s $out/pypy-c/include $out/include/${libPrefix} 101 101 ln -s $out/pypy-c/lib-python/${pythonVersion} $out/lib/${libPrefix} 102 102 103 - wrapProgram "$out/bin/pypy" \ 103 + # We must wrap the original, not the symlink. 104 + # PyPy uses argv[0] to find its standard library, and while it knows 105 + # how to follow symlinks, it doesn't know about wrappers. So, it 106 + # will think the wrapper is the original. As long as the wrapper has 107 + # the same path as the original, this is OK. 108 + wrapProgram "$out/pypy-c/pypy-c" \ 104 109 --set LD_LIBRARY_PATH "${LD_LIBRARY_PATH}:$out/lib" \ 105 110 --set LIBRARY_PATH "${LIBRARY_PATH}:$out/lib" 106 111