* [PATCH] apr: add libtool to SSTATE_SCAN_FILES
@ 2013-03-04 1:34 randy.macleod
2013-03-04 8:18 ` Martin Jansa
0 siblings, 1 reply; 8+ messages in thread
From: randy.macleod @ 2013-03-04 1:34 UTC (permalink / raw)
To: openembedded-core
From: Jackie Huang <jackie.huang@windriver.com>
The hardcoded paths in libtool will cause apache2 compile fail at
link stage when the package apr is installed from sstate cache, so
add libtool to SSTATE_SCAN_FILES.
[ CQID: WIND00405372 ]
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
---
meta/recipes-support/apr/apr_1.4.6.bb | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-support/apr/apr_1.4.6.bb b/meta/recipes-support/apr/apr_1.4.6.bb
index b7220e0..77dffee 100644
--- a/meta/recipes-support/apr/apr_1.4.6.bb
+++ b/meta/recipes-support/apr/apr_1.4.6.bb
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=0c35ff3c4c83b89d2f076e315caac28b \
BBCLASSEXTEND = "native"
-PR = "r1"
+PR = "r2"
SRC_URI = "${APACHE_MIRROR}/apr/${BPN}-${PV}.tar.bz2 \
file://configure_fixes.patch \
@@ -43,7 +43,7 @@ do_install_append() {
cp ${S}/${HOST_SYS}-libtool ${D}${datadir}/build-1/libtool
}
-SSTATE_SCAN_FILES += "apr_rules.mk"
+SSTATE_SCAN_FILES += "apr_rules.mk libtool"
SYSROOT_PREPROCESS_FUNCS += "apr_sysroot_preprocess"
--
1.8.1
^ permalink raw reply related [flat|nested] 8+ messages in thread* Re: [PATCH] apr: add libtool to SSTATE_SCAN_FILES
2013-03-04 1:34 [PATCH] apr: add libtool to SSTATE_SCAN_FILES randy.macleod
@ 2013-03-04 8:18 ` Martin Jansa
2013-03-04 10:11 ` Richard Purdie
0 siblings, 1 reply; 8+ messages in thread
From: Martin Jansa @ 2013-03-04 8:18 UTC (permalink / raw)
To: randy.macleod; +Cc: openembedded-core
[-- Attachment #1: Type: text/plain, Size: 1656 bytes --]
On Sun, Mar 03, 2013 at 08:34:30PM -0500, randy.macleod@windriver.com wrote:
> From: Jackie Huang <jackie.huang@windriver.com>
>
> The hardcoded paths in libtool will cause apache2 compile fail at
> link stage when the package apr is installed from sstate cache, so
> add libtool to SSTATE_SCAN_FILES.
>
> [ CQID: WIND00405372 ]
You can drop this.
>
> Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
> Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
> ---
> meta/recipes-support/apr/apr_1.4.6.bb | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/meta/recipes-support/apr/apr_1.4.6.bb b/meta/recipes-support/apr/apr_1.4.6.bb
> index b7220e0..77dffee 100644
> --- a/meta/recipes-support/apr/apr_1.4.6.bb
> +++ b/meta/recipes-support/apr/apr_1.4.6.bb
> @@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=0c35ff3c4c83b89d2f076e315caac28b \
>
> BBCLASSEXTEND = "native"
>
> -PR = "r1"
> +PR = "r2"
>
> SRC_URI = "${APACHE_MIRROR}/apr/${BPN}-${PV}.tar.bz2 \
> file://configure_fixes.patch \
> @@ -43,7 +43,7 @@ do_install_append() {
> cp ${S}/${HOST_SYS}-libtool ${D}${datadir}/build-1/libtool
> }
>
> -SSTATE_SCAN_FILES += "apr_rules.mk"
> +SSTATE_SCAN_FILES += "apr_rules.mk libtool"
>
> SYSROOT_PREPROCESS_FUNCS += "apr_sysroot_preprocess"
>
> --
> 1.8.1
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [PATCH] apr: add libtool to SSTATE_SCAN_FILES
2013-03-04 8:18 ` Martin Jansa
@ 2013-03-04 10:11 ` Richard Purdie
2013-03-04 10:33 ` Martin Jansa
2013-03-06 3:13 ` Khem Raj
0 siblings, 2 replies; 8+ messages in thread
From: Richard Purdie @ 2013-03-04 10:11 UTC (permalink / raw)
To: Martin Jansa; +Cc: openembedded-core
On Mon, 2013-03-04 at 09:18 +0100, Martin Jansa wrote:
> On Sun, Mar 03, 2013 at 08:34:30PM -0500, randy.macleod@windriver.com wrote:
> > From: Jackie Huang <jackie.huang@windriver.com>
> >
> > The hardcoded paths in libtool will cause apache2 compile fail at
> > link stage when the package apr is installed from sstate cache, so
> > add libtool to SSTATE_SCAN_FILES.
> >
> > [ CQID: WIND00405372 ]
>
> You can drop this.
Is this really a big problem? I can understand people wanting to be able
to track commits back to defect reports...
Cheers,
Richard
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] apr: add libtool to SSTATE_SCAN_FILES
2013-03-04 10:11 ` Richard Purdie
@ 2013-03-04 10:33 ` Martin Jansa
2013-03-04 10:38 ` Richard Purdie
2013-03-06 3:13 ` Khem Raj
1 sibling, 1 reply; 8+ messages in thread
From: Martin Jansa @ 2013-03-04 10:33 UTC (permalink / raw)
To: Richard Purdie; +Cc: openembedded-core
[-- Attachment #1: Type: text/plain, Size: 1151 bytes --]
On Mon, Mar 04, 2013 at 10:11:27AM +0000, Richard Purdie wrote:
> On Mon, 2013-03-04 at 09:18 +0100, Martin Jansa wrote:
> > On Sun, Mar 03, 2013 at 08:34:30PM -0500, randy.macleod@windriver.com wrote:
> > > From: Jackie Huang <jackie.huang@windriver.com>
> > >
> > > The hardcoded paths in libtool will cause apache2 compile fail at
> > > link stage when the package apr is installed from sstate cache, so
> > > add libtool to SSTATE_SCAN_FILES.
> > >
> > > [ CQID: WIND00405372 ]
> >
> > You can drop this.
>
> Is this really a big problem? I can understand people wanting to be able
> to track commits back to defect reports...
Not big problem, but isn't link to cgit in their tracking system enough?
That's what I'm using for SHR bugs now, because I cannot assume that people
using oe-core will know where bug tracker for [SHR #666] is.
I cannot find public windriver bug tracker where I can search
WIND00405372 to find longer description why this change is needed (I
know why in this case) - that's why I find yocto bug tags useful, but
not WIND00*.
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] apr: add libtool to SSTATE_SCAN_FILES
2013-03-04 10:33 ` Martin Jansa
@ 2013-03-04 10:38 ` Richard Purdie
0 siblings, 0 replies; 8+ messages in thread
From: Richard Purdie @ 2013-03-04 10:38 UTC (permalink / raw)
To: Martin Jansa; +Cc: openembedded-core
On Mon, 2013-03-04 at 11:33 +0100, Martin Jansa wrote:
> On Mon, Mar 04, 2013 at 10:11:27AM +0000, Richard Purdie wrote:
> > On Mon, 2013-03-04 at 09:18 +0100, Martin Jansa wrote:
> > > On Sun, Mar 03, 2013 at 08:34:30PM -0500, randy.macleod@windriver.com wrote:
> > > > From: Jackie Huang <jackie.huang@windriver.com>
> > > >
> > > > The hardcoded paths in libtool will cause apache2 compile fail at
> > > > link stage when the package apr is installed from sstate cache, so
> > > > add libtool to SSTATE_SCAN_FILES.
> > > >
> > > > [ CQID: WIND00405372 ]
> > >
> > > You can drop this.
> >
> > Is this really a big problem? I can understand people wanting to be able
> > to track commits back to defect reports...
>
> Not big problem, but isn't link to cgit in their tracking system enough?
>
> That's what I'm using for SHR bugs now, because I cannot assume that people
> using oe-core will know where bug tracker for [SHR #666] is.
I am quite happy for the meaning of some of these to be documented
somewhere with a link to the appropriate bugzillas or other systems.
> I cannot find public windriver bug tracker where I can search
> WIND00405372 to find longer description why this change is needed (I
> know why in this case) - that's why I find yocto bug tags useful, but
> not WIND00*.
As per the commit guidelines, these are additional information and no
excuse for not writing a self-standing commit message. Some will be more
useful than others but I'm not sure it makes sense to remove them just
for the sake of it.
Cheers,
Richard
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] apr: add libtool to SSTATE_SCAN_FILES
2013-03-04 10:11 ` Richard Purdie
2013-03-04 10:33 ` Martin Jansa
@ 2013-03-06 3:13 ` Khem Raj
2013-03-06 16:04 ` Trevor Woerner
1 sibling, 1 reply; 8+ messages in thread
From: Khem Raj @ 2013-03-06 3:13 UTC (permalink / raw)
To: Richard Purdie; +Cc: Martin Jansa, openembedded-core
On Mon, Mar 4, 2013 at 2:11 AM, Richard Purdie
<richard.purdie@linuxfoundation.org> wrote:
>> > [ CQID: WIND00405372 ]
>>
>> You can drop this.
>
> Is this really a big problem? I can understand people wanting to be able
> to track commits back to defect reports...
it would not make sense for most of people in community. Having
reference to yocto project
bug reports is still some information since people can go and look at the bug.
each one of us have one or another way of internal tracking,
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2013-03-06 18:23 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-04 1:34 [PATCH] apr: add libtool to SSTATE_SCAN_FILES randy.macleod
2013-03-04 8:18 ` Martin Jansa
2013-03-04 10:11 ` Richard Purdie
2013-03-04 10:33 ` Martin Jansa
2013-03-04 10:38 ` Richard Purdie
2013-03-06 3:13 ` Khem Raj
2013-03-06 16:04 ` Trevor Woerner
2013-03-06 18:07 ` Mark Hatle
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox