fixing line-endings in file... should fix windows95 installation

git-svn-id: svn://10.0.0.236/trunk@29798 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
leaf%mozilla.org 1999-04-29 19:27:27 +00:00
parent a8cabf5a0c
commit 93afa4e976

View File

@ -1,50 +1,50 @@
@echo off @echo off
if "%MOZ_TOOLS%" == "" goto no_moz_tools if "%MOZ_TOOLS%" == "" goto no_moz_tools
echo. echo.
echo MOZ_TOOLS is set to %MOZ_TOOLS% echo MOZ_TOOLS is set to %MOZ_TOOLS%
echo. echo.
echo copying exes and dlls to %MOZ_TOOLS%\bin echo copying exes and dlls to %MOZ_TOOLS%\bin
if not exist %MOZ_TOOLS%\bin\NUL mkdir %MOZ_TOOLS%\bin >NUL if not exist %MOZ_TOOLS%\bin\NUL mkdir %MOZ_TOOLS%\bin >NUL
copy bin\x86\* %MOZ_TOOLS%\bin >NUL copy bin\x86\* %MOZ_TOOLS%\bin >NUL
echo copying include files to %MOZ_TOOLS%\include echo copying include files to %MOZ_TOOLS%\include
if not exist %MOZ_TOOLS%\include\NUL mkdir %MOZ_TOOLS%\include >NUL if not exist %MOZ_TOOLS%\include\NUL mkdir %MOZ_TOOLS%\include >NUL
copy include\* %MOZ_TOOLS%\include >NUL copy include\* %MOZ_TOOLS%\include >NUL
echo copying include files to %MOZ_TOOLS%\include\libIDL echo copying include files to %MOZ_TOOLS%\include\libIDL
if not exist %MOZ_TOOLS%\include\libIDL\NUL mkdir %MOZ_TOOLS%\include\libIDL >NUL if not exist %MOZ_TOOLS%\include\libIDL\NUL mkdir %MOZ_TOOLS%\include\libIDL >NUL
copy include\libIDL\* %MOZ_TOOLS%\include\libIDL >NUL copy include\libIDL\* %MOZ_TOOLS%\include\libIDL >NUL
echo copying lib files to %MOZ_TOOLS%\lib echo copying lib files to %MOZ_TOOLS%\lib
if not exist %MOZ_TOOLS%\lib\NUL mkdir %MOZ_TOOLS%\lib >NUL if not exist %MOZ_TOOLS%\lib\NUL mkdir %MOZ_TOOLS%\lib >NUL
copy lib\* %MOZ_TOOLS%\lib >NUL copy lib\* %MOZ_TOOLS%\lib >NUL
echo. echo.
echo done copying echo done copying
echo. echo.
echo make sure that MOZ_TOOLS\bin is on your path echo make sure that MOZ_TOOLS\bin is on your path
echo. echo.
goto done goto done
:no_moz_tools :no_moz_tools
echo. echo.
echo. ERROR! echo. ERROR!
echo. echo.
echo You need to set MOZ_TOOLS in your environment. echo You need to set MOZ_TOOLS in your environment.
echo MOZ_TOOLS should be the name of a directory that echo MOZ_TOOLS should be the name of a directory that
echo you create to hold these tools. echo you create to hold these tools.
echo. echo.
echo. e.g. echo. e.g.
echo. mkdir c:\moz_tools echo. mkdir c:\moz_tools
echo. set MOZ_TOOLS=c:\moz_tools echo. set MOZ_TOOLS=c:\moz_tools
echo. echo.
echo MOZ_TOOLS should be set permanently so that it is echo MOZ_TOOLS should be set permanently so that it is
echo available to the build system whenever mozilla is building. echo available to the build system whenever mozilla is building.
echo. echo.
echo. echo.
echo Please set MOZ_TOOLS and run install.bat again echo Please set MOZ_TOOLS and run install.bat again
echo. echo.
:done :done