Re: [patch] search a little harder for mkimage

2006-12-19 Thread Mike Frysinger
On 12/19/06, Andrew Morton <[EMAIL PROTECTED]> wrote: > -MKIMAGE=$(type -path mkimage) > +MKIMAGE=$(type -path ${CROSS_COMPILE}mkimage) Do all bash versions support `type -path'? i've just always used `type -p` myself ... but, bash-2.05 supports it for sure and that was released back in 2001

Re: [patch] search a little harder for mkimage

2006-12-19 Thread Andrew Morton
On Tue, 19 Dec 2006 00:20:42 -0500 "Mike Frysinger" <[EMAIL PROTECTED]> wrote: > this small patch checks to see if `${CROSS_COMPILE}mkimage` exists and > if not, fall back to the standard `mkimage` > > the Blackfin toolchain includes mkimage, but we dont want to namespace > collide with any of th

[patch] search a little harder for mkimage

2006-12-18 Thread Mike Frysinger
this small patch checks to see if `${CROSS_COMPILE}mkimage` exists and if not, fall back to the standard `mkimage` the Blackfin toolchain includes mkimage, but we dont want to namespace collide with any of the user's system setup, so we prefix it with our toolchain name -mike Check to see if the