* 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
_______________________________________________
M4-patches mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/m4-patches