Garst R. Reese wrote: > Angus Leeming wrote: >> >> Try again. >> >> -- >> Angus > That one is fixed, but there is still a problem. see attached. > > Garst
Your dependencies are broken. You could try a little shell script from your $LYXSRCDIR as $ deps.sh $YOURLYXBUILDDIR $ make (F.ex, I ran it as deps.sh build-xforms) Replace -TOUCH=echo +TOUCH=touch If that doesn't work, you'll have to rebuild from scratch Angus #! /bin/sh TOUCH=echo readonly TOUCH test $# -eq 1 || exit srcdir=. builddir=$1 test -d $srcdir || exit test -d $builddir || exit touch_it () { test -d $2/.deps && { for file in $2/.deps/*; do src=`basename $file | sed 's/P[l]*o$//'`C grep 'support\/os.h' $file 2>&1 > /dev/null || continue $TOUCH $1/$src done } for file in $1/*; do test -d $file || continue touch_it $file $builddir/$file done } touch_it src $builddir/src -- Angus