* Makefile.am (path-check): To be safe, do not use `chmod -R' on
$(distdir) before removing it (as Solaris `chmod -R' touches
symlink targets). Instead, use the cleanup strategy used in
distdir.am (which is also employed in tests/defs.in).
+2010-03-30 Stefano Lattarini <stefano.lattarini@gmail.com>
+
+ Avoid another use of `chmod -R'.
+ * Makefile.am (path-check): To be safe, do not use `chmod -R' on
+ $(distdir) before removing it (as Solaris `chmod -R' touches
+ symlink targets). Instead, use the cleanup strategy used in
+ distdir.am.
+
2010-03-28 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
Remove uses of @acronym and @sc.
## of files on stdin, at least.
find . -print | xargs pathchk -p); \
status=$$?; \
- chmod -R a+w $(distdir) > /dev/null 2>&1; rm -rf $(distdir); \
+ find $(distdir) -type d '!' -perm -200 -exec chmod u+w {} ';'; \
+ rm -rf $(distdir); \
exit $$status
## Program to use to fetch files.
(cd $(distdir) && \
find . -print | xargs pathchk -p); \
status=$$?; \
- chmod -R a+w $(distdir) > /dev/null 2>&1; rm -rf $(distdir); \
+ find $(distdir) -type d '!' -perm -200 -exec chmod u+w {} ';'; \
+ rm -rf $(distdir); \
exit $$status
fetch: