audit-tmpdir.sh: fix on darwin
compress-man-pages.sh uses `find ... | while ...; do...` so this works on darwin vcunat says the following in https://github.com/NixOS/nixpkgs/commit/94d164dd7#r22030369 > Unfortunately, process substitution doesn't work during early darwin bootstrap. http://hydra.nixos.org/build/52433342 We've run into that before. > I think it should work to have `find ... | while ...; do...`
This commit is contained in:
parent
7866db71cc
commit
3b3ef7b766
@ -16,7 +16,7 @@ auditTmpdir() {
|
|||||||
header "checking for references to $TMPDIR/ in $dir..."
|
header "checking for references to $TMPDIR/ in $dir..."
|
||||||
|
|
||||||
local i
|
local i
|
||||||
while IFS= read -r -d $'\0' i; do
|
find "$dir" -type f -print0 | while IFS= read -r -d $'\0' i; do
|
||||||
if [[ "$i" =~ .build-id ]]; then continue; fi
|
if [[ "$i" =~ .build-id ]]; then continue; fi
|
||||||
|
|
||||||
if isELF "$i"; then
|
if isELF "$i"; then
|
||||||
@ -35,7 +35,7 @@ auditTmpdir() {
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
done < <(find "$dir" -type f -print0)
|
done
|
||||||
|
|
||||||
stopNest
|
stopNest
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user