···2929 isExeResult="$(LANG=C $READELF -h -l "$1" 2> /dev/null \
3030 | grep '^ *Type: *EXEC\>\|^ *INTERP\>')"
3131 # not using grep -q, because it can cause Broken pipe
3232+ # https://unix.stackexchange.com/questions/305547/broken-pipe-when-grepping-output-but-only-with-i-flag
3233 [ -n "$isExeResult" ]
3334}
3435
+1-1
pkgs/stdenv/generic/setup.sh
···487487 # build platform are included here. That would be `depsBuild*`,
488488 # and legacy `nativeBuildInputs`, in general. If we aren't cross
489489 # compiling, however, everything can be put on the PATH. To ease
490490- # the transition, we do include everything in thatcase.
490490+ # the transition, we do include everything in that case.
491491 #
492492 # TODO(@Ericson2314): Don't special-case native compilation
493493 if [[ -z "${strictDeps-}" || "$hostOffset" -le -1 ]]; then