Jeff: Minor problem, using brackets in tests is not portable. That's easy enough to fix though:
if test -x /usr/bin/xargs ; then echo $stuff_to_rm | xargs rm else rm_it_all_one_at_a_time fi Could you work out the detials and post a proper patch with ChangeLog against HEAD to libtool-patches? Consider it pre-approved pending pedantic peer ponderance. ;) Robert Jeff Dubrule wrote: > > On Mon, Oct 22, 2001 at 04:58:09PM -0400, [EMAIL PROTECTED] wrote: > > In cases where there are more object files than can fit in a single > > command line this method will fail. While it is faster it isn't as > > robust so I'm inclined to reject it. > > OK, would you accept it if it were changed to: > > if [ -x /usr/bin/xargs ]; then > echo $stuff_to_rm | xargs rm > else > rm_it_all_one_at_a_time > fi > > -jeff -- Robert Boehne Software Engineer Ricardo Software Chicago Technical Center TEL: (630)789-0003 x. 238 FAX: (630)789-0127 email: [EMAIL PROTECTED] _______________________________________________ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool
