Hello, I looked at target/install/share/build_stage2.sh. Here is a patch that fixes the problem I reported yesterday:
r...@gem:~/t2-trunk/target/share/install# diff build_stage2.sh.bak build_stage2.sh 97,98c97,98 < [ ! -e usr/bin/vi -a -e usr/bin/nvi ] && ln -s nvi usr/bin/vi < [ ! -e usr/bin/emacs -a -e usr/bin/zile ] && ln -s zile usr/bin/emacs --- > [ ! -h usr/bin/vi ] && [ -e usr/bin/nvi ] && ln -s nvi usr/bin/vi > [ ! -h usr/bin/emacs ] && [ -e usr/bin/zile ] && ln -s zile > usr/bin/emacs Cheers, Roger ----------------------------------------------------------- If you wish to unsubscribe from this mailing, send mail to [email protected] with a subject of: unsubscribe t2
