Re: [Resend] wineloader: call wineprefixcreate with explicit WINEPREFIX

2005-01-23 Thread Crestez Leonard
On Fri, 2005-01-14 at 20:31 +0100, Alexandre Julliard wrote: > Crestez Leonard <[EMAIL PROTECTED]> writes: > > > This allows you do "export WINEPREFIX=~/.wine-zzz; ./wine regedit", > > and automatically generate ~/.wine-zzz. You used to have to call > > wineprefixcreate yourself, with correct para

Re: [Resend] wineloader: call wineprefixcreate with explicit WINEPREFIX

2005-01-14 Thread Alexandre Julliard
Crestez Leonard <[EMAIL PROTECTED]> writes: > This allows you do "export WINEPREFIX=~/.wine-zzz; ./wine regedit", > and automatically generate ~/.wine-zzz. You used to have to call > wineprefixcreate yourself, with correct parameters. Actually this is a feature ;-) The rationale is that if you ma

Re: wineloader: call wineprefixcreate with explicit WINEPREFIX

2005-01-07 Thread Andreas Mohr
On Fri, Jan 07, 2005 at 10:46:51PM +0100, Tobias Burnus wrote: > Hello, > > Crestez Leonard wrote: > >+if [ -z $WINEPREFIX ] > >+then > While my bash accepts this, Tru64 UNIX's POSIX shell does not. > Please use "$WINEPREFIX" instead. And while you are at it, you could also replace those [ ] used

Re: wineloader: call wineprefixcreate with explicit WINEPREFIX

2005-01-07 Thread Tobias Burnus
Hello, Crestez Leonard wrote: +if [ -z $WINEPREFIX ] +then While my bash accepts this, Tru64 UNIX's POSIX shell does not. Please use "$WINEPREFIX" instead. Tobias