On 02/23/2014 07:20 AM, Mark H Weaver wrote: > As for why 'which' didn't work, I suspect it's because this code is > evaluated very early in the build process, before the PATH variable has > been set. > > You can use 'which' in the code segments passed to #:phases because > those are wrapped with 'lambda', which defines an anonymous procedure. > The procedure returned by that lambda expression is not called until > it's time to run the phase. At that point, PATH is set. > > Does that make sense?
Yes, a lot! :-) Thank you Mark. Sree