From 03138b0ed4251e898a18094cb89470cd018936d6 Mon Sep 17 00:00:00 2001 From: Bart Oldeman Date: Sat, 27 Mar 2004 12:13:10 +0000 Subject: [PATCH] explicitly use .bat for call, etc., otherwise 4DOS doesn't like us... git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@836 6ac86273-5f31-0410-b378-82cca8765d1b --- build.bat | 8 ++++---- buildall.bat | 2 +- clean.bat | 6 +++--- clobber.bat | 6 +++--- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/build.bat b/build.bat index a99ca18..75a0e22 100644 --- a/build.bat +++ b/build.bat @@ -6,7 +6,7 @@ :- Syntax: BUILD [-r] [fat32|fat16] [msc|wc|tc|tcpp] [86|186|386] :- option case is significant !! -if "%1" == "-r" call clobber +if "%1" == "-r" call clobber.bat if "%1" == "-r" shift set XERROR= @@ -14,7 +14,7 @@ set XERROR= if not exist config.bat echo You must copy CONFIG.B to CONFIG.BAT and edit it to reflect your setup! if not exist config.bat goto abort -call config +call config.bat :----------------------------------------------------------------------- :- following is command line handling @@ -41,7 +41,7 @@ if not "%1" == "" goto loop_commandline if "%COMPILER%" == "" echo you MUST define a COMPILER variable in CONFIG.BAT if "%COMPILER%" == "" goto abort -call default +call default.bat :----------------------------------------------------------------------- :- finally - we are going to compile @@ -109,4 +109,4 @@ echo Compilation was aborted! set XERROR=1 :end -default clearset +default.bat clearset diff --git a/buildall.bat b/buildall.bat index db864b3..a87638b 100644 --- a/buildall.bat +++ b/buildall.bat @@ -79,7 +79,7 @@ if exist %TempSumfile% del %TempSumfile% >ktemp.bat for %%i in (bin\k*.map) do echo call %0 $SUMMARY %%i >>ktemp.bat sort ktemps.bat -call ktemps +call ktemps.bat del ktemp.bat del ktemps.bat diff --git a/clean.bat b/clean.bat index 0475236..b2028c1 100644 --- a/clean.bat +++ b/clean.bat @@ -6,8 +6,8 @@ if not exist config.bat echo You must copy CONFIG.B to CONFIG.BAT and edit it to reflect your setup! if not exist config.bat goto end -call config -call default +call config.bat +call default.bat cd utils %MAKE% clean @@ -34,4 +34,4 @@ cd .. if exist *.bak del *.bak :end -default clearset +default.bat clearset diff --git a/clobber.bat b/clobber.bat index 986c436..2fcc81c 100644 --- a/clobber.bat +++ b/clobber.bat @@ -6,8 +6,8 @@ if not exist config.bat echo You must copy CONFIG.B to CONFIG.BAT and edit it to reflect your setup! if not exist config.bat goto end -call config -call default +call config.bat +call default.bat cd utils %MAKE% clobber @@ -35,4 +35,4 @@ if exist *.bak del *.bak if exist status.me del status.me :end -default clearset +default.bat clearset