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
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 within that script by test, since some Solaris (AFAIR) versions don't contain the [ binary/symlink that is an alternate syntax for an invocation of test.
Andreas Mohr