Re: [OE-core] [pyro][PATCH] package.bbclass: Add '-b' option to file call in isELF

2018-05-03 Thread Andre McCurdy
On Mon, Apr 16, 2018 at 12:32 PM, Mark Hatle wrote: > The isELF function works by running: > >result = file >if 'ELF' in result > > By default 'file' will prepend the result with the path name of the file > that is being checked. This usually works fine, such

Re: [OE-core] [pyro][PATCH] package.bbclass: Add '-b' option to file call in isELF

2018-04-18 Thread akuster808
On 04/16/2018 12:32 PM, Mark Hatle wrote: > The isELF function works by running: > >result = file >if 'ELF' in result > > By default 'file' will prepend the result with the path name of the file > that is being checked. This usually works fine, such as: > > $ file

[OE-core] [pyro][PATCH] package.bbclass: Add '-b' option to file call in isELF

2018-04-16 Thread Mark Hatle
The isELF function works by running: result = file if 'ELF' in result By default 'file' will prepend the result with the path name of the file that is being checked. This usually works fine, such as: $ file /home/foo/openembedded-core/meta/classes/package.bbclass