All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH] pmdk: fix install error
@ 2019-01-09  6:16 Yongxin Liu
  2019-01-09 10:06 ` Khem Raj
  0 siblings, 1 reply; 7+ messages in thread
From: Yongxin Liu @ 2019-01-09  6:16 UTC (permalink / raw)
  To: openembedded-devel

.so files are not generated in usr/local/lib/ but in usr/local/lib64.

Signed-off-by: Yongxin Liu <yongxin.liu@windriver.com>
---
 meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb b/meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb
index 3da22a970..af2229f1c 100644
--- a/meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb
+++ b/meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb
@@ -43,10 +43,10 @@ do_install() {
 	mv ${D}/usr/local/bin/daxio ${D}${bindir}/
 
 	install -d ${D}${libdir}
-	mv ${D}/usr/local/lib/*so* ${D}${libdir}/
+	mv ${D}/usr/local/lib64/*so* ${D}${libdir}/
 
 	install -d ${D}${libdir}/pkgconfig
-	mv ${D}/usr/local/lib/pkgconfig/*.pc ${D}${libdir}/pkgconfig/
+	mv ${D}/usr/local/lib64/pkgconfig/*.pc ${D}${libdir}/pkgconfig/
 
 	install -d ${D}${includedir}
 	mv ${D}/usr/local/include/* ${D}${includedir}/
-- 
2.14.4



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [meta-oe][PATCH] pmdk: fix install error
  2019-01-09  6:16 [meta-oe][PATCH] pmdk: fix install error Yongxin Liu
@ 2019-01-09 10:06 ` Khem Raj
  2019-01-09 10:17   ` Liu, Yongxin
  0 siblings, 1 reply; 7+ messages in thread
From: Khem Raj @ 2019-01-09 10:06 UTC (permalink / raw)
  To: Yongxin Liu; +Cc: openembeded-devel

On Tue, Jan 8, 2019 at 10:20 PM Yongxin Liu <yongxin.liu@windriver.com> wrote:
>
> .so files are not generated in usr/local/lib/ but in usr/local/lib64.
>
> Signed-off-by: Yongxin Liu <yongxin.liu@windriver.com>
> ---
>  meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb b/meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb
> index 3da22a970..af2229f1c 100644
> --- a/meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb
> +++ b/meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb
> @@ -43,10 +43,10 @@ do_install() {
>         mv ${D}/usr/local/bin/daxio ${D}${bindir}/
>
>         install -d ${D}${libdir}
> -       mv ${D}/usr/local/lib/*so* ${D}${libdir}/
> +       mv ${D}/usr/local/lib64/*so* ${D}${libdir}/
>

I wonder if this should be using /usr/local/${base_libdir} here

>         install -d ${D}${libdir}/pkgconfig
> -       mv ${D}/usr/local/lib/pkgconfig/*.pc ${D}${libdir}/pkgconfig/
> +       mv ${D}/usr/local/lib64/pkgconfig/*.pc ${D}${libdir}/pkgconfig/
>
>         install -d ${D}${includedir}
>         mv ${D}/usr/local/include/* ${D}${includedir}/
> --
> 2.14.4
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [meta-oe][PATCH] pmdk: fix install error
  2019-01-09 10:06 ` Khem Raj
@ 2019-01-09 10:17   ` Liu, Yongxin
  2019-01-09 18:18     ` Khem Raj
  0 siblings, 1 reply; 7+ messages in thread
From: Liu, Yongxin @ 2019-01-09 10:17 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembeded-devel

> -----Original Message-----
> From: Khem Raj [mailto:raj.khem@gmail.com]
> Sent: Wednesday, January 9, 2019 18:06
> To: Liu, Yongxin
> Cc: openembeded-devel
> Subject: Re: [oe] [meta-oe][PATCH] pmdk: fix install error
> 
> On Tue, Jan 8, 2019 at 10:20 PM Yongxin Liu <yongxin.liu@windriver.com>
> wrote:
> >
> > .so files are not generated in usr/local/lib/ but in usr/local/lib64.
> >
> > Signed-off-by: Yongxin Liu <yongxin.liu@windriver.com>
> > ---
> >  meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb b/meta-
> oe/recipes-extended/pmdk/pmdk_1.4.2.bb
> > index 3da22a970..af2229f1c 100644
> > --- a/meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb
> > +++ b/meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb
> > @@ -43,10 +43,10 @@ do_install() {
> >         mv ${D}/usr/local/bin/daxio ${D}${bindir}/
> >
> >         install -d ${D}${libdir}
> > -       mv ${D}/usr/local/lib/*so* ${D}${libdir}/
> > +       mv ${D}/usr/local/lib64/*so* ${D}${libdir}/
> >
> 
> I wonder if this should be using /usr/local/${base_libdir} here

Since ${base_libdir} is "/lib64", should we use "/usr/local${base_libdir}" ?
Or it is fine to go with "/usr/local//lib64" after parsing?


Thanks,
Yongxin

> >         install -d ${D}${libdir}/pkgconfig
> > -       mv ${D}/usr/local/lib/pkgconfig/*.pc ${D}${libdir}/pkgconfig/
> > +       mv ${D}/usr/local/lib64/pkgconfig/*.pc ${D}${libdir}/pkgconfig/
> >
> >         install -d ${D}${includedir}
> >         mv ${D}/usr/local/include/* ${D}${includedir}/
> > --
> > 2.14.4
> >
> > --
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [meta-oe][PATCH] pmdk: fix install error
  2019-01-09 10:17   ` Liu, Yongxin
@ 2019-01-09 18:18     ` Khem Raj
  2019-01-09 21:35       ` Randy MacLeod
  0 siblings, 1 reply; 7+ messages in thread
From: Khem Raj @ 2019-01-09 18:18 UTC (permalink / raw)
  To: Liu, Yongxin; +Cc: openembeded-devel

On Wed, Jan 9, 2019 at 2:17 AM Liu, Yongxin <Yongxin.Liu@windriver.com> wrote:
>
> > -----Original Message-----
> > From: Khem Raj [mailto:raj.khem@gmail.com]
> > Sent: Wednesday, January 9, 2019 18:06
> > To: Liu, Yongxin
> > Cc: openembeded-devel
> > Subject: Re: [oe] [meta-oe][PATCH] pmdk: fix install error
> >
> > On Tue, Jan 8, 2019 at 10:20 PM Yongxin Liu <yongxin.liu@windriver.com>
> > wrote:
> > >
> > > .so files are not generated in usr/local/lib/ but in usr/local/lib64.
> > >
> > > Signed-off-by: Yongxin Liu <yongxin.liu@windriver.com>
> > > ---
> > >  meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb | 4 ++--
> > >  1 file changed, 2 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb b/meta-
> > oe/recipes-extended/pmdk/pmdk_1.4.2.bb
> > > index 3da22a970..af2229f1c 100644
> > > --- a/meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb
> > > +++ b/meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb
> > > @@ -43,10 +43,10 @@ do_install() {
> > >         mv ${D}/usr/local/bin/daxio ${D}${bindir}/
> > >
> > >         install -d ${D}${libdir}
> > > -       mv ${D}/usr/local/lib/*so* ${D}${libdir}/
> > > +       mv ${D}/usr/local/lib64/*so* ${D}${libdir}/
> > >
> >
> > I wonder if this should be using /usr/local/${base_libdir} here
>
> Since ${base_libdir} is "/lib64", should we use "/usr/local${base_libdir}" ?
> Or it is fine to go with "/usr/local//lib64" after parsing?

using /usr/local${base_libdir} is fine

>
>
> Thanks,
> Yongxin
>
> > >         install -d ${D}${libdir}/pkgconfig
> > > -       mv ${D}/usr/local/lib/pkgconfig/*.pc ${D}${libdir}/pkgconfig/
> > > +       mv ${D}/usr/local/lib64/pkgconfig/*.pc ${D}${libdir}/pkgconfig/
> > >
> > >         install -d ${D}${includedir}
> > >         mv ${D}/usr/local/include/* ${D}${includedir}/
> > > --
> > > 2.14.4
> > >
> > > --
> > > _______________________________________________
> > > Openembedded-devel mailing list
> > > Openembedded-devel@lists.openembedded.org
> > > http://lists.openembedded.org/mailman/listinfo/openembedded-devel


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [meta-oe][PATCH] pmdk: fix install error
  2019-01-09 18:18     ` Khem Raj
@ 2019-01-09 21:35       ` Randy MacLeod
  2019-01-10  2:59         ` Liu, Yongxin
  0 siblings, 1 reply; 7+ messages in thread
From: Randy MacLeod @ 2019-01-09 21:35 UTC (permalink / raw)
  To: Liu, Yongxin; +Cc: openembeded-devel

On 1/9/19 1:18 PM, Khem Raj wrote:
> On Wed, Jan 9, 2019 at 2:17 AM Liu, Yongxin <Yongxin.Liu@windriver.com> wrote:
>>
>>> -----Original Message-----
>>> From: Khem Raj [mailto:raj.khem@gmail.com]
>>> Sent: Wednesday, January 9, 2019 18:06
>>> To: Liu, Yongxin
>>> Cc: openembeded-devel
>>> Subject: Re: [oe] [meta-oe][PATCH] pmdk: fix install error
>>>
>>> On Tue, Jan 8, 2019 at 10:20 PM Yongxin Liu <yongxin.liu@windriver.com>
>>> wrote:
>>>>
>>>> .so files are not generated in usr/local/lib/ but in usr/local/lib64.
>>>>
>>>> Signed-off-by: Yongxin Liu <yongxin.liu@windriver.com>
>>>> ---
>>>>   meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb | 4 ++--
>>>>   1 file changed, 2 insertions(+), 2 deletions(-)
>>>>
>>>> diff --git a/meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb b/meta-
>>> oe/recipes-extended/pmdk/pmdk_1.4.2.bb
>>>> index 3da22a970..af2229f1c 100644
>>>> --- a/meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb
>>>> +++ b/meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb
>>>> @@ -43,10 +43,10 @@ do_install() {
>>>>          mv ${D}/usr/local/bin/daxio ${D}${bindir}/
>>>>
>>>>          install -d ${D}${libdir}
>>>> -       mv ${D}/usr/local/lib/*so* ${D}${libdir}/
>>>> +       mv ${D}/usr/local/lib64/*so* ${D}${libdir}/
>>>>
>>>
>>> I wonder if this should be using /usr/local/${base_libdir} here
>>
>> Since ${base_libdir} is "/lib64", should we use "/usr/local${base_libdir}" ?
>> Or it is fine to go with "/usr/local//lib64" after parsing?
> 
> using /usr/local${base_libdir} is fine

It's a little odd that the default prefix is /usr/local rather
than /usr . It would make sense to start with /usr/local in
early development but the first commit to pmdk on github was
in 2014...

If this is part of the system, use /usr, if it's a hack or
an install owned by the local system admin, use /usr/local.
As per, for example:
   https://refspecs.linuxfoundation.org/FHS_3.0/fhs/ch04s09.html

../Randy

> 
>>
>>
>> Thanks,
>> Yongxin
>>
>>>>          install -d ${D}${libdir}/pkgconfig
>>>> -       mv ${D}/usr/local/lib/pkgconfig/*.pc ${D}${libdir}/pkgconfig/
>>>> +       mv ${D}/usr/local/lib64/pkgconfig/*.pc ${D}${libdir}/pkgconfig/
>>>>
>>>>          install -d ${D}${includedir}
>>>>          mv ${D}/usr/local/include/* ${D}${includedir}/
>>>> --
>>>> 2.14.4
>>>>
>>>> --
>>>> _______________________________________________
>>>> Openembedded-devel mailing list
>>>> Openembedded-devel@lists.openembedded.org
>>>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


-- 
# Randy MacLeod
# Wind River Linux


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [meta-oe][PATCH] pmdk: fix install error
  2019-01-09 21:35       ` Randy MacLeod
@ 2019-01-10  2:59         ` Liu, Yongxin
  2019-01-10  3:41           ` Randy MacLeod
  0 siblings, 1 reply; 7+ messages in thread
From: Liu, Yongxin @ 2019-01-10  2:59 UTC (permalink / raw)
  To: MacLeod, Randy; +Cc: openembeded-devel


> -----Original Message-----
> From: MacLeod, Randy
> Sent: Thursday, January 10, 2019 05:36
> To: Liu, Yongxin
> Cc: Khem Raj; openembeded-devel
> Subject: Re: [oe] [meta-oe][PATCH] pmdk: fix install error
> 
> On 1/9/19 1:18 PM, Khem Raj wrote:
> > On Wed, Jan 9, 2019 at 2:17 AM Liu, Yongxin <Yongxin.Liu@windriver.com>
> wrote:
> >>
> >>> -----Original Message-----
> >>> From: Khem Raj [mailto:raj.khem@gmail.com]
> >>> Sent: Wednesday, January 9, 2019 18:06
> >>> To: Liu, Yongxin
> >>> Cc: openembeded-devel
> >>> Subject: Re: [oe] [meta-oe][PATCH] pmdk: fix install error
> >>>
> >>> On Tue, Jan 8, 2019 at 10:20 PM Yongxin Liu
> <yongxin.liu@windriver.com>
> >>> wrote:
> >>>>
> >>>> .so files are not generated in usr/local/lib/ but in usr/local/lib64.
> >>>>
> >>>> Signed-off-by: Yongxin Liu <yongxin.liu@windriver.com>
> >>>> ---
> >>>>   meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb | 4 ++--
> >>>>   1 file changed, 2 insertions(+), 2 deletions(-)
> >>>>
> >>>> diff --git a/meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb b/meta-
> >>> oe/recipes-extended/pmdk/pmdk_1.4.2.bb
> >>>> index 3da22a970..af2229f1c 100644
> >>>> --- a/meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb
> >>>> +++ b/meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb
> >>>> @@ -43,10 +43,10 @@ do_install() {
> >>>>          mv ${D}/usr/local/bin/daxio ${D}${bindir}/
> >>>>
> >>>>          install -d ${D}${libdir}
> >>>> -       mv ${D}/usr/local/lib/*so* ${D}${libdir}/
> >>>> +       mv ${D}/usr/local/lib64/*so* ${D}${libdir}/
> >>>>
> >>>
> >>> I wonder if this should be using /usr/local/${base_libdir} here
> >>
> >> Since ${base_libdir} is "/lib64", should we use
> "/usr/local${base_libdir}" ?
> >> Or it is fine to go with "/usr/local//lib64" after parsing?
> >
> > using /usr/local${base_libdir} is fine
> 
> It's a little odd that the default prefix is /usr/local rather
> than /usr . It would make sense to start with /usr/local in
> early development but the first commit to pmdk on github was
> in 2014...
> 
> If this is part of the system, use /usr, if it's a hack or
> an install owned by the local system admin, use /usr/local.
> As per, for example:
>    https://refspecs.linuxfoundation.org/FHS_3.0/fhs/ch04s09.html

In configure file of pmdk, I find the following sentences.

    if test "x$prefix" = "xNONE" ; then 
      prefix="/usr/local"
    fi
    if test "x$exec_prefix" = "xNONE" ; then 
      exec_prefix=$prefix
    fi
    PREFIX=$prefix

So in bb file, even ${prefix} is /usr, "oe_runmake PREFIX=${prefix} DESTDIR=${D} install" 
doesn't set PREFIX to /usr for pmdk installation.

"oe_runmake prefix=/usr DESTDIR=${D} install" works. 

If you are OK with this change, I will send patch V2.


Thanks,
Yongxin


> 
> ../Randy
> 
> >
> >>
> >>
> >> Thanks,
> >> Yongxin
> >>
> >>>>          install -d ${D}${libdir}/pkgconfig
> >>>> -       mv ${D}/usr/local/lib/pkgconfig/*.pc
> ${D}${libdir}/pkgconfig/
> >>>> +       mv ${D}/usr/local/lib64/pkgconfig/*.pc
> ${D}${libdir}/pkgconfig/
> >>>>
> >>>>          install -d ${D}${includedir}
> >>>>          mv ${D}/usr/local/include/* ${D}${includedir}/
> >>>> --
> >>>> 2.14.4
> >>>>
> >>>> --
> >>>> _______________________________________________
> >>>> Openembedded-devel mailing list
> >>>> Openembedded-devel@lists.openembedded.org
> >>>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> 
> 
> --
> # Randy MacLeod
> # Wind River Linux

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [meta-oe][PATCH] pmdk: fix install error
  2019-01-10  2:59         ` Liu, Yongxin
@ 2019-01-10  3:41           ` Randy MacLeod
  0 siblings, 0 replies; 7+ messages in thread
From: Randy MacLeod @ 2019-01-10  3:41 UTC (permalink / raw)
  To: Liu, Yongxin; +Cc: openembeded-devel

On 1/9/19 9:59 PM, Liu, Yongxin wrote:
> 
>> -----Original Message-----
>> From: MacLeod, Randy
>> Sent: Thursday, January 10, 2019 05:36
>> To: Liu, Yongxin
>> Cc: Khem Raj; openembeded-devel
>> Subject: Re: [oe] [meta-oe][PATCH] pmdk: fix install error
>>
>> On 1/9/19 1:18 PM, Khem Raj wrote:
>>> On Wed, Jan 9, 2019 at 2:17 AM Liu, Yongxin <Yongxin.Liu@windriver.com>
>> wrote:
>>>>
>>>>> -----Original Message-----
>>>>> From: Khem Raj [mailto:raj.khem@gmail.com]
>>>>> Sent: Wednesday, January 9, 2019 18:06
>>>>> To: Liu, Yongxin
>>>>> Cc: openembeded-devel
>>>>> Subject: Re: [oe] [meta-oe][PATCH] pmdk: fix install error
>>>>>
>>>>> On Tue, Jan 8, 2019 at 10:20 PM Yongxin Liu
>> <yongxin.liu@windriver.com>
>>>>> wrote:
>>>>>>
>>>>>> .so files are not generated in usr/local/lib/ but in usr/local/lib64.
>>>>>>
>>>>>> Signed-off-by: Yongxin Liu <yongxin.liu@windriver.com>
>>>>>> ---
>>>>>>    meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb | 4 ++--
>>>>>>    1 file changed, 2 insertions(+), 2 deletions(-)
>>>>>>
>>>>>> diff --git a/meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb b/meta-
>>>>> oe/recipes-extended/pmdk/pmdk_1.4.2.bb
>>>>>> index 3da22a970..af2229f1c 100644
>>>>>> --- a/meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb
>>>>>> +++ b/meta-oe/recipes-extended/pmdk/pmdk_1.4.2.bb
>>>>>> @@ -43,10 +43,10 @@ do_install() {
>>>>>>           mv ${D}/usr/local/bin/daxio ${D}${bindir}/
>>>>>>
>>>>>>           install -d ${D}${libdir}
>>>>>> -       mv ${D}/usr/local/lib/*so* ${D}${libdir}/
>>>>>> +       mv ${D}/usr/local/lib64/*so* ${D}${libdir}/
>>>>>>
>>>>>
>>>>> I wonder if this should be using /usr/local/${base_libdir} here
>>>>
>>>> Since ${base_libdir} is "/lib64", should we use
>> "/usr/local${base_libdir}" ?
>>>> Or it is fine to go with "/usr/local//lib64" after parsing?
>>>
>>> using /usr/local${base_libdir} is fine
>>
>> It's a little odd that the default prefix is /usr/local rather
>> than /usr . It would make sense to start with /usr/local in
>> early development but the first commit to pmdk on github was
>> in 2014...
>>
>> If this is part of the system, use /usr, if it's a hack or
>> an install owned by the local system admin, use /usr/local.
>> As per, for example:
>>     https://refspecs.linuxfoundation.org/FHS_3.0/fhs/ch04s09.html
> 
> In configure file of pmdk, I find the following sentences.
> 
>      if test "x$prefix" = "xNONE" ; then
>        prefix="/usr/local"
>      fi
>      if test "x$exec_prefix" = "xNONE" ; then
>        exec_prefix=$prefix
>      fi
>      PREFIX=$prefix
> 
> So in bb file, even ${prefix} is /usr, "oe_runmake PREFIX=${prefix} DESTDIR=${D} install"
> doesn't set PREFIX to /usr for pmdk installation.
> 
> "oe_runmake prefix=/usr DESTDIR=${D} install" works.
> 
> If you are OK with this change, I will send patch V2.


Fine with me. Other recipes do similar things:

$ cd .../oe-core.git
$ rg e_runmake |grep prefix | tail -3
meta/recipes-devtools/opkg-utils/opkg-utils_0.4.0.bb:	oe_runmake 
PREFIX=${prefix} DESTDIR=${D} install
meta/recipes-kernel/blktrace/blktrace_git.bb:	oe_runmake ARCH="${ARCH}" 
prefix=${prefix} \
meta/recipes-devtools/unifdef/unifdef_2.11.bb:	oe_runmake install 
DESTDIR=${D} prefix=${prefix}


../Randy
> 
> 
> Thanks,
> Yongxin
> 
> 
>>
>> ../Randy
>>
>>>
>>>>
>>>>
>>>> Thanks,
>>>> Yongxin
>>>>
>>>>>>           install -d ${D}${libdir}/pkgconfig
>>>>>> -       mv ${D}/usr/local/lib/pkgconfig/*.pc
>> ${D}${libdir}/pkgconfig/
>>>>>> +       mv ${D}/usr/local/lib64/pkgconfig/*.pc
>> ${D}${libdir}/pkgconfig/
>>>>>>
>>>>>>           install -d ${D}${includedir}
>>>>>>           mv ${D}/usr/local/include/* ${D}${includedir}/
>>>>>> --
>>>>>> 2.14.4
>>>>>>
>>>>>> --
>>>>>> _______________________________________________
>>>>>> Openembedded-devel mailing list
>>>>>> Openembedded-devel@lists.openembedded.org
>>>>>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>>
>>
>> --
>> # Randy MacLeod
>> # Wind River Linux


-- 
# Randy MacLeod
# Wind River Linux


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2019-01-10  3:42 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-09  6:16 [meta-oe][PATCH] pmdk: fix install error Yongxin Liu
2019-01-09 10:06 ` Khem Raj
2019-01-09 10:17   ` Liu, Yongxin
2019-01-09 18:18     ` Khem Raj
2019-01-09 21:35       ` Randy MacLeod
2019-01-10  2:59         ` Liu, Yongxin
2019-01-10  3:41           ` Randy MacLeod

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.