Stefano Franchi wrote:
So what's the best way to have both a debug-enabled and a plain vanilla lyx installed?Don't install the debug version. You can run it from where you compiled it. I just use a little script:
#!/bin/bash USERDIR=/home/rgheck/dev/lyxdirs/lyxbranch/ if [ -e $USERDIR/.lyxpipe.in ]; then rm $USERDIR/.lyxpipe.*; fi /cvs/lyx16/src/lyx -userdir $USERDIR $* -geometry 1024x1024+100+100; if [ -f $OFFENDER ]; then rm $OFFENDER; fi
saved as "lyx16" to run the debug-enabled version. rh