> You'll end up with /opt/wine/bin, /opt/wine/lib, etc? wine won't be in > the path, which is not standard at all and will lead to "I can't use it > after installation"... > > Also, why do you force --with-nptl at the beginning? You'll get it > either twice, or once if you don't need it. D'oh, because I'm a fool and forgot that I modified my own copy of wineinstall locally. Here is the correct patch. thanks -mike
Index: tools/wineinstall =================================================================== RCS file: /home/wine/wine/tools/wineinstall,v retrieving revision 1.55 diff -u -r1.55 wineinstall --- tools/wineinstall 16 May 2003 20:13:16 -0000 1.55 +++ tools/wineinstall 1 Jun 2003 11:48:57 -0000 @ -152,8 +152,8 @@ echo "WINE Installer v0.74" echo -# check for redhat 9 so we can enable --with-nptl until runtime detection is complete -if [ -e /etc/redhat-release ] && grep Shrike /etc/redhat-release &>/dev/null; then +# check for redhat 9 with tls libs so we can enable --with-nptl until runtime detection is complete +if [ -e /etc/redhat-release ] && grep "Shrike" /etc/redhat-release &>/dev/null && [ -e /lib/tls ]; then CONFARGS="$CONFARGS --with-nptl" fi