On Monday 25 March 2002 1:29 pm, Jean-Marc Lasgouttes wrote:
> >>>>> "Angus" == Angus Leeming <[EMAIL PROTECTED]> writes:
>
> Angus> Ok, Lars, I've finally got there. I had to tweak my configure
> Angus> script so that CPP="deccxx -E", or I couldn't find ostream etc.
> Angus> I also upgraded to automake 1.5, autoconf 2.52, although I'm
> Angus> not sure that that was strictly necessary. (I did this before
> Angus> finding the CPP fix.) Finally, I had to patch lyxinclude.m4;
> Angus> attached.
>
> Concerning you patch to depcomp: it seems that automake 1.6 has fixes
> in depcomp for tru64 unix. You may want to upgrade to that and update
> depcomp in lyx sources.

The guy doing the maintenance is clearly braindead. This is automake 1.6 
where object=file.o or file.lo:

   base=`echo "$object" | sed -e 's/\.o$/.d/' -e 's/\.lo$/.d/'`
   tmpdepfile1="$base.o.d"
   tmpdepfile2="$base.d"

resulting in 
        base=file.d
        etc

It should be:
   base=`echo "$object" | sed -e 's/\.o$//' -e 's/\.lo$//'`

What should I do now?

Angus

Reply via email to