pythonPackages.wrapPython: fix for paths with spaces

This commit is contained in:
Nikolay Amiantov
2017-02-19 01:43:12 +03:00
parent fca09185d0
commit 7cbe538e94
+1 -1
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.