From ed04524c13959c581ea39e0f03af37ea887c04e2 Mon Sep 17 00:00:00 2001 From: Patrick Mast Date: Fri, 18 Jun 1999 18:46:32 +0000 Subject: [PATCH] Changed tests\working\hscript\bld23exe.bat --- harbour/ChangeLog | 5 +++++ harbour/tests/working/hscript/bld32exe.bat | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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