On 18 Feb 1999, Lars Gullik Bjønnes wrote:
> >> Richard E Hawkins Esq writes:
> REHE> sed: can't read ./Makefile.in: No such file or directory
>
> Hmm, are you missing the Makefile.in in lib/relyx/ ?
>
> If so you need to to a cvs checkout.
>
> Lgb
I tried with a clean checkout and the problem seems to be that we have to
change to lib/reLyX/ and run automake and autoconf by hand before it will
compile -- since there is no Makefile there.
I actually get complaints during ./configure that there is no configure
present in lib/reLyX (since autoconf was never run there by hand) but the
messages zoom by and are easy to miss.
Can we get configure to run automake and autoconf in lib/reLyX if it can't
find a configure there?
cd lib/reLyX
if [ ! -x configure ]; then
...
fi
./configure ...
Allan. (ARRae)