On Thu, 22 Jun 2000, Adam Fedor wrote:
> Sounds odd. Maybe your /bin/sh is screweed up. Does typing
> 
> export MINGW32=0
> 
> on the command line give an error also (if your using sh)? Or

    It will.  Setting environment variables using "export MINGW32=0" is a
bash-ism, and not supported by the standard Bourne shell.  Though it works
on most Linux distributions (which use bash as their /bin/sh) and at least
FreeBSD as well, it won't work on Solaris.
    What you need to do is this:

MINGW32=0
export MINGW32

Reply via email to