8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 21:23:04 +01:00

Correct syntax to make it works on Windows

This commit is contained in:
hvlad 2012-04-25 08:32:30 +00:00
parent 77594b5787
commit b6a0ee5139

View File

@ -9,9 +9,9 @@
@echo Generating parse.cpp and dsql.tab.h
@sed -n '/%type .*/p' < %FB_ROOT_PATH%\src\dsql\parse.y > y.types
@sed 's/%type .*//' < %FB_ROOT_PATH%\src\dsql\parse.y > y.y
@sed $(INLINE_EDIT_SED) '/\/*\*\* TYPES \*\*\*\//r y.types' y.y
@sed -n "/%%type .*/p" < %FB_ROOT_PATH%\src\dsql\parse.y > y.types
@sed "s/%%type .*//" < %FB_ROOT_PATH%\src\dsql\parse.y > y.y
@sed -i "/\/*\*\* TYPES \*\*\*\//r" y.types y.y
%FB_ROOT_PATH%\temp\%FB_OBJ_DIR%\btyacc\btyacc -l -d -S %FB_ROOT_PATH%\src\dsql\btyacc_fb.ske y.y
@if errorlevel 1 (exit /B 1)