JTK wrote:

> Ok, I'm gonna need some help here, this just ain't working.  What I'm trying to
> do is write a Cygwin shell script that will build Mozilla on WhyME.  Here it is:
> 
> 
> [quote]
> #!/bin/sh
> # Tippy-top-level build script for Mozilla on Windows
> 
> export MOZ_BITS=32
> export MOZ_DEBUG=
> export MOZ_SRC='c:\unix\home\grvs\src'
> export MOZ_TOOLS='C:\unix\home\grvs\mozilla_wintools'
> export OS_TARGET=WIN95
> export WINOS=$OS_TARGET
> export _MSC_VER=1200
> 
> export MSVCDir='C:\PROGRA~1\MICROS~3\VC98'
> export
> INCLUDE=$MSVCDir\\ATL\\INCLUDE\;$MSVCDir\\INCLUDE\;$MSVCDir\\MFC\\INCLUDE\;$INCLUDE
> export LIB=$MSVCDir\\LIB\;$MSVCDir\\MFC\\LIB\;$LIB
> export PATH=$PATH:$(cygpath -u $MSVCDir\\bin):$(cygpath -u
> 'C:\PROGRA~1\MICROS~3\Common\MSDev98\Bin'):$(cygpath -u $MOZ_TOOLS\\bin)


Try stopping here and see what "set" will return. Maybe the settings do 
not work, the way you set them (even as they look right to me). 
Especially look at export WINOS=$OS_TARGET. Why not make it simply
export WINOS=WIN95 ?

Jacek



Reply via email to