Hello,

a few weeks ago I have committed this:

> 2005-07-07  Stepan Kasal  <[EMAIL PROTECTED]>
>       * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Report the full
>       path, too; insert a "===" to emphasize the line.
...
> -    AC_MSG_NOTICE([configuring in $ac_dir])
> +    ac_dir_full=`pwd`/$ac_dir
> +    AC_MSG_NOTICE([=== configuring in $ac_dir ($ac_dir_full)])

today, I noticed that it doesn't stand out too much:

configure: === configuring in gettext-runtime (/tmp/gettext/gettext-runtime)

So I committed a patch to remove the "configure: " prefix.
The patch is attached to this post.

Have a nice day,
        Stepan
2005-07-26  Stepan Kasal  <[EMAIL PROTECTED]>

        * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): The message is now
        prefixed by mere "===", not "configure: === ".

Index: lib/autoconf/status.m4
===================================================================
RCS file: /cvsroot/autoconf/autoconf/lib/autoconf/status.m4,v
retrieving revision 1.71
diff -u -r1.71 status.m4
--- lib/autoconf/status.m4      25 Jul 2005 18:10:25 -0000      1.71
+++ lib/autoconf/status.m4      26 Jul 2005 10:06:47 -0000
@@ -918,8 +918,9 @@
     # parts of a large source tree are present.
     test -d $srcdir/$ac_dir || continue
 
-    ac_dir_full=`pwd`/$ac_dir
-    AC_MSG_NOTICE([=== configuring in $ac_dir ($ac_dir_full)])
+    ac_msg="=== configuring in $ac_dir (`pwd`/$ac_dir"
+    _AS_ECHO_LOG([$ac_msg])
+    _AS_ECHO([$ac_msg])
     AS_MKDIR_P(["$ac_dir"])
     _AC_SRCDIRS(["$ac_dir"])
 

Reply via email to