Hello,

* Patrick Welche wrote on Fri, Dec 14, 2007 at 08:58:51PM CET:
> On Fri, Dec 14, 2007 at 12:27:48PM -0700, Eric Blake wrote:
> > 
> > The general idiom for this is 'rm -f dummy $files', so that even if $files
> > is empty, you are still passing an argument to rm, and the -f avoids
> > failure on the dummy argument.
> 
> Elegant!

Only if you have a dummy file to remove.  In libtool it's easier to just
add
  test -z "$files" || $RM $files

as appropriate.  Which tests are failing for you, Patrick?  I assume
this is NetBSD?

Thanks,
Ralf


_______________________________________________
http://lists.gnu.org/mailman/listinfo/libtool

Reply via email to