Merge pull request #22962 from abbradar/python-env
pythonPackages.wrapPython: fix for paths with spaces
This commit is contained in:
commit
429add6541
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue