|
From: Blas R. S. <br...@us...> - 2003-07-03 02:14:02
|
Build Version : T1.5.0.3618 Firebird 1.5 Release Candidate 4 (writeBuildNum.sh,v 1.3615 2003/07/03 02:13:59 brodsom Exp ) Update of /cvsroot/firebird/firebird2/builds/win32 In directory sc8-pr-cvs1:/tmp/cvs-serv18075 Modified Files: preprocess.bat Log Message: Remove sed test since the normal build (without parse) doesn't need sed or any other unix command. Index: preprocess.bat =================================================================== RCS file: /cvsroot/firebird/firebird2/builds/win32/preprocess.bat,v retrieving revision 1.10 retrieving revision 1.11 diff -b -U3 -r1.10 -r1.11 --- preprocess.bat 2 Jul 2003 19:02:48 -0000 1.10 +++ preprocess.bat 3 Jul 2003 02:13:58 -0000 1.11 @@ -22,7 +22,6 @@ @if "%1"=="BOOT" (set BOOTBUILD=1) else (set BOOTBUILD=0) @echo. -@call :CHECKTOOLS @if "%BOOTBUILD%"=="1" (call :BOOT_PROCESS) else (call :MASTER_PROCESS) @set BOOTBUILD= @set GPRE= @@ -47,17 +46,6 @@ @%GPRE% -n -gds -raw -ids ..\..\src\%1\%2.epp ..\..\generated\%1\%2.cpp -b localhost:%DB_PATH%/generated/ goto :EOF -::===================================== - -:CHECKTOOLS -:: verify our unix tool set is available - -@sed --help > nul -@if errorlevel 1 ((goto :HELP_TOOLS) & (goto :EOF)) -echo sed located on path - -goto :EOF - ::=========== :BOOT_PROCESS @echo. @@ -83,22 +71,5 @@ @for %%i in (dba, security) do @call :PREPROCESS utilities %%i @goto :EOF - -::================= -:HELP_TOOLS -@echo: -@echo Please check that these utilities programs are -@echo all on your path: -@echo: -@echo sed.exe -@echo: -@echo If you do not have these utilities they may be downloaded -@echo via ftp from the Firebird Project on Sourceforge: -@echo: -@echo http://prdownloads.sourceforge.net/firebird/ -@echo: -@echo filename: Firebird_Unix_Tools_for_Win32.zip -@echo: -@goto :END :END |