On Tue, 18 Mar 2003 [EMAIL PROTECTED] wrote: > cd ..\lib > .... > TLIB Version 2.01 ........ > for %i in (*obj) do ..\utils\patchobj CODE=LCODE TEXT=_LOWTEXT %i > Fatal: Unable to execute command: for > ......... > > > > I do not know it is a bug of 'makefile' or not, but after I > modified the partial of "..\lib\makefile", the kernel > can be compiled without problem, and it also can boot. What did > I do just expand the 'for' loop. and mark the 'for' loop like > following:
it's a problem with the "make" that comes with Turbo C 2.01 -- later versions (including the one that comes with Turbo C++ 1.01, Watcom WMAKE, ...) do this fine. > # for %i in (*.obj) do ..\utils\patchobj CODE=LCODE TEXT=_LOWTEXT %i try to use this in the makefile instead: $(COMSPEC) /c for %i in (*.obj) do ..\utils\patchobj CODE=LCODE TEXT=_LOWTEXT %i Bart ==^================================================================ This email was sent to: [EMAIL PROTECTED] EASY UNSUBSCRIBE click here: http://topica.com/u/?b1ddyi.b3hwCs.YXJjaGl2 Or send an email to: [EMAIL PROTECTED] TOPICA - Start your own email discussion group. FREE! http://www.topica.com/partner/tag02/create/index2.html ==^================================================================
