m4-patches
[Top][All Lists]
Advanced

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

Re: bootstrap still broken


From: Ralf Wildenhues
Subject: Re: bootstrap still broken
Date: Sat, 25 Jun 2005 08:39:46 +0200
User-agent: Mutt/1.5.9i

* Ralf Wildenhues wrote on Sat, Jun 25, 2005 at 08:19:03AM CEST:
> 
> configure uncovers another bug in Libtool CVS HEAD (RM defined too
> late),

Oh well.  This is m4 at fault: it uses AC_LIBTOOL_COMPILER_OPTION, which
is not published interface, but does not cater for it's internal change
$rm -> $RM.  At least this gives me a reason not to change its interface
any more than that..  Here's a cheap hack for that, ignoring the fact
that this issue ought to be solved cleanly sometime..

Regards,
Ralf

        * ltdl/m4/debug.m4: Cater for Libtool $rm -> $RM change.

Index: ltdl/m4/debug.m4
===================================================================
RCS file: /cvsroot/m4/m4/ltdl/m4/debug.m4,v
retrieving revision 1.1
diff -u -r1.1 debug.m4
--- ltdl/m4/debug.m4    4 May 2005 15:45:44 -0000       1.1
+++ ltdl/m4/debug.m4    25 Jun 2005 06:37:46 -0000
@@ -34,7 +34,8 @@
 
 set dummy $CC
 compiler="${compiler-[$]2}"
-test -n "$rm" || rm="rm -f"
+: ${rm="rm -f"}
+: ${RM="rm -f"}
 
 if test "X$enable_debug" = Xyes; then
   AC_DISABLE_SHARED




reply via email to

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