<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-3" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Glynn Clements wrote:
<blockquote
 cite="mid:18394.53192.157787.727907@cerise.gclements.plus.com"
 type="cite">
  <pre wrap="">Moritz Lennert wrote:

  </pre>
  <blockquote type="cite">
    <blockquote type="cite">
      <pre wrap="">echo %PATH% says:

    C:\msys\1.0\bin;C:\Perl\bin;

which I have set in the grass63.bat file. 
      </pre>
    </blockquote>
    <pre wrap="">You need to add the above paths to the PATH variable, not replace all 
the contents of that variable with the above paths, i.e.

set PATH=%PATH%;C:\msys\1.0\bin;C:\Perl\bin
    </pre>
  </blockquote>
  <pre wrap=""><!---->
I would recommend putting MSys' bin directory first, e.g.:

        set PATH=C:\msys\1.0\bin;%PATH%;C:\Perl\bin

The reason is that Windows has some programs with the same name as
common Unix programs (e.g. "find"), and scripts will want to use the
Unix versions.

  </pre>
</blockquote>
Thanks Glynn! I have been thinking many times how to resolve that
issue: I did not know that order would matter.<br>
Regards,<br>
Luigi<br>
</body>
</html>