On 5/3/07, Christophe Kalt <kalt(a)taranis.org> wrote:
Couple issues i ran into:
dnl Calculate canonical name for blddir (i.e. current
directory).
dnl PWD may already be the preferable absolute name for ".",
dnl but we can't trust it - it is sometimes inaccurate.
absolute_pwd="`pwd`";
if test -n "$PWD" -a "`cd $PWD && pwd`" =
"$absolute_pwd"
While this will behave okay, it still prints a spurious
"./configure: no home directory"
on stderr
dnl Check if the source directory already has a configured system in it.
if test `pwd` != `sh -c cd $srcdir && pwd` \
Please, use quotes:
if test `pwd` != `sh -c "cd $srcdir && pwd"` \
Thank you for the feedback.
Did you run configure without a HOME environment variable? It may not
be documented anywhere in the autoconf documentation, but this is
probably not allowed (at least for autoconf-2.13). Fortunately, this
is a very rare condition - I have never seen this bug reported before,
so I think the potential benefit of fixing this problem is very low.
Therefore, if we had a bug tracking system, I'd mark this bug as WONTFIX.
Regards,
Vin Shelton
--
The Journey by Mary Oliver
http://www.poemhunter.com/p/m/poem.asp?poet=6771&poem=30506
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta