Re: [OE-core] [PATCH 03/10] hardlink: add new recipe

2016-02-25 Thread Mark Hatle
On 2/25/16 3:40 PM, Joshua G Lock wrote: > On Thu, 2016-02-25 at 11:13 -0600, Mark Hatle wrote: >> I just noticed this, any reason to use this over fdupes? > > No reason other than that hardlink is what the Clear Linux team, who > authored swupd, are using. Is there a compelling reason to look at

Re: [OE-core] [PATCH 03/10] hardlink: add new recipe

2016-02-25 Thread Joshua G Lock
On Thu, 2016-02-25 at 11:13 -0600, Mark Hatle wrote: > I just noticed this, any reason to use this over fdupes? No reason other than that hardlink is what the Clear Linux team, who authored swupd, are using. Is there a compelling reason to look at fdupes instead? Thanks, Joshua > > I've used f

Re: [OE-core] [PATCH 03/10] hardlink: add new recipe

2016-02-25 Thread Mark Hatle
I just noticed this, any reason to use this over fdupes? I've used fdupes in the past for this exact thing -- primarily with shrinking the size of multilib SDKs with a lot of locales. --Mark On 2/24/16 8:52 AM, Joshua Lock wrote: > --- > meta/recipes-extended/hardlink/hardlink_0.3.0.bb | 19 +++

Re: [OE-core] [PATCH 03/10] hardlink: add new recipe

2016-02-25 Thread Joshua G Lock
On Wed, 2016-02-24 at 14:57 -0800, Andre McCurdy wrote: > On Wed, Feb 24, 2016 at 6:52 AM, Joshua Lock > wrote: > > > > --- > >  meta/recipes-extended/hardlink/hardlink_0.3.0.bb | 19 > > +++ > >  1 file changed, 19 insertions(+) > >  create mode 100644 meta/recipes- > > extended/h

Re: [OE-core] [PATCH 03/10] hardlink: add new recipe

2016-02-24 Thread Andre McCurdy
On Wed, Feb 24, 2016 at 6:52 AM, Joshua Lock wrote: > --- > meta/recipes-extended/hardlink/hardlink_0.3.0.bb | 19 +++ > 1 file changed, 19 insertions(+) > create mode 100644 meta/recipes-extended/hardlink/hardlink_0.3.0.bb > > diff --git a/meta/recipes-extended/hardlink/hardlink

Re: [OE-core] [PATCH 03/10] hardlink: add new recipe

2016-02-24 Thread Burton, Ross
On 24 February 2016 at 14:52, Joshua Lock wrote: > +do_compile () { > + oe_runmake 'DESTDIR=${D}' 'PREFIX=${prefix}' BINDIR='${bindir}' > +} > + > +do_install () { > + oe_runmake install 'DESTDIR=${D}' 'PREFIX=${prefix}' > BINDIR='${bindir}' > +} > EXTRA_OEMAKE will make this neater.

[OE-core] [PATCH 03/10] hardlink: add new recipe

2016-02-24 Thread Joshua Lock
--- meta/recipes-extended/hardlink/hardlink_0.3.0.bb | 19 +++ 1 file changed, 19 insertions(+) create mode 100644 meta/recipes-extended/hardlink/hardlink_0.3.0.bb diff --git a/meta/recipes-extended/hardlink/hardlink_0.3.0.bb b/meta/recipes-extended/hardlink/hardlink_0.3.0.bb ne