libtool-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Minor bootstrap fix


From: Brad
Subject: Re: Minor bootstrap fix
Date: Fri, 21 Mar 2003 15:54:36 -0500
User-agent: Mutt/1.4.1i

On Fri, Mar 21, 2003 at 09:12:44PM +0100, Christian Cornelssen wrote:
> Hi,
> 
> the attached patch (against today's CVS) rewrites the autom4te.cache/
> removal in libtool's bootstrap script such that no spurious error
> messages (due to subdir search after having deleted the subdir) occur.
> 
> Regards,
> 
> Christian Cornelssen

> --- bootstrap.orig    Fri Mar 21 17:52:32 2003
> +++ bootstrap Fri Mar 21 20:45:16 2003
> @@ -3,7 +3,8 @@
>  # helps bootstrapping libtool, when checked out from CVS
>  # requires at least GNU autoconf 2.50 and GNU automake1.4-p5
>  
> -find . \( -name autom4te.cache -o -name libtool \) -exec rm -r {} \;
> +find . -name autom4te.cache | xargs -r rm -rf
> +find . -name libtool | xargs -r rm -f
>  
>  : ${ACLOCAL=aclocal}
>  : ${AUTOMAKE=automake}

xargs -r flag is not portable.

// Brad

address@hidden
address@hidden




reply via email to

[Prev in Thread] Current Thread [Next in Thread]