Date: Sun, 25 Apr 1999 11:53:43 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: Daniel Urquhart cc: djgpp AT delorie DOT com Subject: Re: PATH under win98 In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk 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.