On Fri, May 7, 2021 at 2:13 AM <arn...@skeeve.com> wrote: > > Hi Paul & Jim, > > Please see the report below from Nelson Beebe, attempting to build > https://www.skeeve.com/gawk/gawk-5.1.1a.tar.gz on recent MacOS. > This a test release, working towards a real release. > > Can you pleae work directly with Nelson in terms of patches etc and > then let me know when Gnulib is updated?
I can't speak for others, but I solve it with: grep -IR nonnull ./* | cut -f 1 -d ':' | sort | uniq Then, for each file in the list: sed -e 's/__nonnull ((1))//g' \ -e 's/__nonnull ((1, 2))//g' \ "${file}" > "${file}.fixed" mv "${file}.fixed" "${file}" (You will need it for more than Awk. Wget and a couple of others need the treatment, too). Jeff