diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 41fee1e98e..203b05bdfc 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,8 @@ +19990618-19:39 CET Patrick Mast + * tests\working\hscript\bld32exe.bat + changed line 17 : echo ..\runner.obj >> b32.bc + because runner.obj is not in tests\working\hscript but in tests\working + 19990618-17:00 CET Victor Szel * Fixed some GCC warnings in: source/compiler/harbour.y diff --git a/harbour/tests/working/hscript/bld32exe.bat b/harbour/tests/working/hscript/bld32exe.bat index a67c99c25c..c6a029d79e 100644 --- a/harbour/tests/working/hscript/bld32exe.bat +++ b/harbour/tests/working/hscript/bld32exe.bat @@ -14,7 +14,7 @@ GOTO :END echo -O2 -e%1.exe -I..\..\..\include ..\..\..\source\vm\hvm.c %1.c > b32.bc echo ..\..\..\libs\b32\harbour.lib ..\..\..\libs\b32\terminal.lib >> b32.bc echo ..\..\..\libs\b32\hbgt.lib >> b32.bc -echo runner.obj >> b32.bc +echo ..\runner.obj >> b32.bc bcc32 @b32.bc del b32.bc GOTO :END