In message <[EMAIL PROTECTED]>, Erez Zadok writes:
> Autoconf expects automake to support a --build-dir option during "make
> dist". Automake doesn't support that option. I have the most recent CVS'ed
> versions. This has been not working for some time now. Will this simple
> problem be fixed soon?
>
> Also, what's the difference b/t --build-dir and --output-dir supposed to be?
>
> Thanks,
> Erez.
Update: I managed to solve that problem by rerunning automake on the .am
files in the autoconf CVS repository. But now I have different problems
when running make dist with builddir!=srcdir:
- it doesn't find AMTAR. So I added
AC_PATH_PROGS(AMTAR, gtar tar, /usr/bin/tar)
- it autobuild INSTALL.txt in $builddir, but looks for it in $srcdir
- ditto for tests/macros.m4
Erez.