Skip to content

Commit b2093d4

Browse files
committedNov 3, 2017
linuxPackages.bcc: Fix quoting for older Nix versions
Issue #31179.
1 parent 208fd87 commit b2093d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎pkgs/os-specific/linux/bcc/default.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
2626
mv $out/share/bcc/man $out/share/
2727
2828
find $out/share/bcc/tools -type f -executable -print0 | \
29-
while IFS= read -r -d $'\0' f; do
29+
while IFS= read -r -d ''$'\0' f; do
3030
pythonLibs="$out/lib/python2.7/site-packages:${pythonPackages.netaddr}/lib/${python.libPrefix}/site-packages"
3131
rm -f $out/bin/$(basename $f)
3232
makeWrapper $f $out/bin/$(basename $f) \

0 commit comments

Comments
 (0)
Please sign in to comment.