On 14.06.2007 07:39, David Kågedal wrote: > setenv(PATH, .:$(getenv PATH)) David, The PATH environment variable is handled internally. You need to use PATH[] += . or PATH[] += $(dir .) In order to add . or the current directory (respectively) to your PATH. Note that you can also do $(file xxx) ... to inhibit the PATH lookup altogether. Aleksey