Hello,
I've created a trivial patch implementing my previous proposal, please
find it attached.
Woudl it be OK?
Stepan
On Wed, Jun 22, 2005 at 12:26:19PM +0200, Stepan Kasal wrote:
> On Mon, Jun 20, 2005 at 12:56:58PM -0400, Karl Berry wrote:
> > Ralf> With your proposal, the "notice" changes it's meaning from
> > "subdir inside of builddir" to "subdir of srcdir".
> >
> > So maybe a more precise wording is to remove the "in" which is there now:
>
> I think the easiest fix is to keep the original meaning and do:
> configuring in $ac_dir (`pwd`/$ac_dir)
>
> (Yes, it gives "//dir" if you run /configure, but who would do that?)
2005-06-27 Stepan Kasal <[EMAIL PROTECTED]>
* lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Report the full
path, too.
Index: lib/autoconf/status.m4
===================================================================
RCS file: /cvsroot/autoconf/autoconf/lib/autoconf/status.m4,v
retrieving revision 1.63
diff -u -r1.63 status.m4
--- lib/autoconf/status.m4 21 Jun 2005 16:03:59 -0000 1.63
+++ lib/autoconf/status.m4 27 Jun 2005 13:41:49 -0000
@@ -1168,7 +1168,8 @@
# parts of a large source tree are present.
test -d $srcdir/$ac_dir || continue
- AC_MSG_NOTICE([configuring in $ac_dir])
+ ac_dir_full=`pwd`/$ac_dir
+ AC_MSG_NOTICE([configuring in $ac_dir ($ac_dir_full)])
AS_MKDIR_P(["$ac_dir"])
_AC_SRCDIRS(["$ac_dir"])