>>>Another problem:
>>>I used configure --with-lyxname=lyx115 to preserve the older installation
>>>in case I have problems with the new version. But when I installed it, the
>>>binary was named lyx and repaced the old one. The lib directory on the
>>>oter hand was correctly named lyx115. What did I do wrong here?
>Nothing, it works that way, here is the protection I use
>in the makelyx script (1.1.4 is the current version):
>cp /usr/local/bin/lyx /usr/local/bin/lyx-1.1.4
>cp /usr/local/bin/reLyX /usr/local/bin/reLyX-1.1.4
>make install > log_install
>cp /usr/local/bin/lyx /usr/local/bin/lyx-1.1.5; strip /usr/local/bin/lyx-1.1.5
>cp /usr/local/bin/reLyX /usr/local/bin/reLyX-1.1.5
>mv /usr/local/bin/lyx-1.1.4 /usr/local/bin/lyx
>mv /usr/local/bin/reLyX-1.1.4 /usr/local/bin/reLyX
>chmod 755 /usr/local/bin/lyx* /usr/local/bin/reLyX*
Alternatively, do a standard make install then
mv /usr/local/bin/lyx /usr/local/bin/lyx-1.1.5
ln -fs /usr/local/bin/lyx-1.1.5 /usr/local/bin/lyx
And similar for relyx
Angus