Mail Archives: djgpp/1999/04/25/04:58:00
On Wed, 21 Apr 1999, Daniel Urquhart wrote:
> I am having trouble setting the path under win 98. Before my old comp paked
> it in I used win95, GREAT, but now My autoexec.bat file is:
>
> C:\PROGRA~1\NETWOR~1\MCAFEE~1\SCANPM.EXE C:\
> d:\djgpp\bin\setdjgpp d:\djgpp d:/djgpp
> SET PATH=d:\djgpp\bin;%PATH%
> @IF ERRORLEVEL 1 PAUSE
> @ECHO OFF
I'd bet this didn't work in Windows 95 as well. You need to change
this line:
d:\djgpp\bin\setdjgpp d:\djgpp d:/djgpp
to say this:
CALL d:\djgpp\bin\setdjgpp d:\djgpp d:/djgpp
Without the CALL, the lines after the one which invokes setdjgpp.bat
never get to execute.
- Raw text -