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"` \
Christophe
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta