Date: Tue, 1 Sep 1998 11:32:55 +0300 (IDT) From: Eli Zaretskii To: peter cc: djgpp AT delorie DOT com Subject: Re: problem using rhide In-Reply-To: <6sf4q4$r74@chronicle.concentric.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On 31 Aug 1998, peter wrote: > set PATH = %PATH% C:\DJGPP\BIN This is wrong. First, NEVER use blanks around the `='. Second, use a semicolon to separate directories in PATH. And third, put DJGPP's bin directory at the beginning of PATH. This is what you want: set PATH=C:\DJGPP\BIN;%PATH%