Merge pull request #22962 from abbradar/python-env

pythonPackages.wrapPython: fix for paths with spaces
This commit is contained in:
Frederik Rietdijk 2017-02-19 08:51:31 +01:00 committed by GitHub
commit 429add6541

View file

@ -47,7 +47,7 @@ wrapPythonProgramsIn() {
buildPythonPath "$pythonPath"
# Find all regular files in the output directory that are executable.
for f in $(find "$dir" -type f -perm -0100); do
find "$dir" -type f -perm -0100 -print0 | while read -d "" f; do
# Rewrite "#! .../env python" to "#! /nix/store/.../python".
# Strip suffix, like "3" or "2.7m" -- we don't have any choice on which
# Python to use besides one with this hook anyway.