Newer automakes create the distdirs read-only,
so Makefile.am's "dist-hook" target was unable to run unix2dos
in $(distdir)/ports/winnt and choked "make distcheck".
bk: 3e178ac7TOTGoqOTWmvOkdM2qBFO9Q
dist-hook:
@find $(distdir) -type d -name CVS -print | xargs rm -rf
@find $(distdir) -type d -name SCCS -print | xargs rm -rf
+ @chmod u+w $(distdir)/ports/winnt
@for i in `find $(distdir)/ports/winnt -type f -name '*.ds*' -print`; \
do chmod u+w $$i ; unix2dos $$i $$i; done