Re: Potential bash 2.05 issues with 'set'

2001-10-23 Thread Akim Demaille
> "Tim" == Tim Van Holder <[EMAIL PROTECTED]> writes: Tim> Something like this, perhaps? For sure! ___ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool

Re: [Patch #41] Do all rm's in one command with --mode=clean

2001-10-23 Thread Robert Boehne
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

Re: PATCH: Fix mips*-*-linux*

2001-10-23 Thread Robert Boehne
Hello, Here is the patch reworked for HEAD. If noone objects I'll commit it. ChangeLog Entry: 2001-10-23 H.J. Lu <[EMAIL PROTECTED]> * ltmain.sh: Allow link against an archive when building a shared library. * libtool.m4 (lt_cv_deplibs_check_method): Always use

Re: PATCH: Fix mips*-*-linux*

2001-10-23 Thread H . J . Lu
On Tue, Oct 23, 2001 at 11:24:42AM -0500, Robert Boehne wrote: > Hello, > > Here is the patch reworked for HEAD. If noone objects > I'll commit it. > > ChangeLog Entry: > > 2001-10-23 H.J. Lu <[EMAIL PROTECTED]> > > * ltmain.sh: Allow link against an archive when building a >

Re: Problems with AIX4 Compiler

2001-10-23 Thread Bill Wendling
Hi all, It's been awhile...we had a release and stuff and I couldn't get back to this problem until now. We're still having this problem even with the newest libtool and autoconf stuff... Also sprach [EMAIL PROTECTED]: } I have not seen a problem like that before. But I don't think } libtool s

Re: [Patch #41] Do all rm's in one command with --mode=clean

2001-10-23 Thread Jeff Dubrule
Hmm. I was having trouble trying to feed 'xargs' it's data without actually putting it all on a command-line at some point(silly, eh?). In any event, perhaps something like this will work: for each file ... $rmfiles=$rmfiles $some_files_to_delete ... if 100 < -l "$rmfi

Re: Potential bash 2.05 issues with 'set'

2001-10-23 Thread Tim Van Holder
> > "Tim" == Tim Van Holder <[EMAIL PROTECTED]> writes: > > Tim> Something like this, perhaps? > > For sure! > OK - installed (this may be resolved in bash 2.06; if so, I'll try to remember to amend this entry accordingly). ___ Libtool mailing l