Skip to content

Commit

Permalink
linuxPackages.bcc: Fix quoting for older Nix versions
Browse files Browse the repository at this point in the history
Issue #31179.
  • Loading branch information
dezgeg committed Nov 3, 2017
1 parent 208fd87 commit b2093d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/bcc/default.nix
Expand Up @@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
mv $out/share/bcc/man $out/share/
find $out/share/bcc/tools -type f -executable -print0 | \
while IFS= read -r -d $'\0' f; do
while IFS= read -r -d ''$'\0' f; do
pythonLibs="$out/lib/python2.7/site-packages:${pythonPackages.netaddr}/lib/${python.libPrefix}/site-packages"
rm -f $out/bin/$(basename $f)
makeWrapper $f $out/bin/$(basename $f) \
Expand Down

0 comments on commit b2093d4

Please sign in to comment.