mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
fix pythonWrapper for non-gnu ln
This commit is contained in:
parent
26ec1abf41
commit
870f4cca73
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ stdenv.mkDerivation {
|
|||
makeWrapper "$python/bin/$prg" "$out/bin/$prg" --suffix PYTHONPATH : "$PYTHONPATH"
|
||||
done
|
||||
ensureDir "$out/share"
|
||||
ln "$python/share/man" "$out/share/man" -s
|
||||
ln -s "$python/share/man" "$out/share/man"
|
||||
'';
|
||||
|
||||
inherit python;
|
||||
|
|
Loading…
Reference in a new issue