[Omake] PATH

Aleksey Nogin nogin at metaprl.org
Thu Jun 14 08:55:34 PDT 2007


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


More information about the Omake mailing list