In reply to myself:

> Is there a way of making the "rm -rf" more robust?  Maybe with some sort
> of "while distdir exists, try removing" loop?

So far this works for me:

In automake-1.9/am/distdir.am:
------->8 patch snip 8<---------
 am__remove_distdir = \
   { test ! -d $(distdir) \
     || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
-         && rm -fr $(distdir); }; }
+         && { until rm -fr $(distdir); do :; done; }; }; }
 endif %?TOPDIR_P%

 .PHONY: distdir
------->8 patch snip 8<---------

Comments?



David Fang
Computer Systems Laboratory
Electrical & Computer Engineering
Cornell University
http://www.csl.cornell.edu/~fang/
        -- (2400 baud? Netscape 3.0?? lynx??? No problem!)



Reply via email to