* [PATCH] insane.bbclass: Skip '.pc' in qa_configure
@ 2010-10-01 21:49 Tom Rini
2010-10-01 21:49 ` Tom Rini
0 siblings, 1 reply; 6+ messages in thread
From: Tom Rini @ 2010-10-01 21:49 UTC (permalink / raw)
To: openembedded-devel
There's nothing helpful in these files if they exist, and
they are often unreadable. So lets just skip them.
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] insane.bbclass: Skip '.pc' in qa_configure
2010-10-01 21:49 [PATCH] insane.bbclass: Skip '.pc' in qa_configure Tom Rini
@ 2010-10-01 21:49 ` Tom Rini
2010-10-01 21:56 ` Tom Rini
2010-10-02 20:35 ` Khem Raj
0 siblings, 2 replies; 6+ messages in thread
From: Tom Rini @ 2010-10-01 21:49 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Tom Rini <tom_rini@mentor.com>
---
classes/insane.bbclass | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/classes/insane.bbclass b/classes/insane.bbclass
index 5afa63c..9087efd 100644
--- a/classes/insane.bbclass
+++ b/classes/insane.bbclass
@@ -466,6 +466,8 @@ python do_qa_configure() {
configs = []
bb.debug(1, "Checking sanity of the config.log file")
for root, dirs, files in os.walk(bb.data.getVar('WORKDIR', d, True)):
+ if ".pc" in root:
+ continue
statement = "grep 'CROSS COMPILE Badness:' %s > /dev/null" % \
os.path.join(root,"config.log")
if "config.log" in files:
--
1.6.3.3
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] insane.bbclass: Skip '.pc' in qa_configure
2010-10-01 21:49 ` Tom Rini
@ 2010-10-01 21:56 ` Tom Rini
2010-10-02 6:10 ` Holger Freyther
2010-10-02 20:35 ` Khem Raj
1 sibling, 1 reply; 6+ messages in thread
From: Tom Rini @ 2010-10-01 21:56 UTC (permalink / raw)
To: openembedded-devel
Tom Rini wrote:
--compose didn't stick, grr.
These files won't have anything useful in them and are often unreadable
so lets just skip them.
> Signed-off-by: Tom Rini <tom_rini@mentor.com>
> ---
> classes/insane.bbclass | 2 ++
> 1 files changed, 2 insertions(+), 0 deletions(-)
>
> diff --git a/classes/insane.bbclass b/classes/insane.bbclass
> index 5afa63c..9087efd 100644
> --- a/classes/insane.bbclass
> +++ b/classes/insane.bbclass
> @@ -466,6 +466,8 @@ python do_qa_configure() {
> configs = []
> bb.debug(1, "Checking sanity of the config.log file")
> for root, dirs, files in os.walk(bb.data.getVar('WORKDIR', d, True)):
> + if ".pc" in root:
> + continue
> statement = "grep 'CROSS COMPILE Badness:' %s > /dev/null" % \
> os.path.join(root,"config.log")
> if "config.log" in files:
--
Tom Rini
Mentor Graphics Corporation
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] insane.bbclass: Skip '.pc' in qa_configure
2010-10-01 21:56 ` Tom Rini
@ 2010-10-02 6:10 ` Holger Freyther
2010-10-03 1:59 ` Tom Rini
0 siblings, 1 reply; 6+ messages in thread
From: Holger Freyther @ 2010-10-02 6:10 UTC (permalink / raw)
To: openembedded-devel
On 10/02/2010 05:56 AM, Tom Rini wrote:
> Tom Rini wrote:
>
> --compose didn't stick, grr.
>
> These files won't have anything useful in them and are often unreadable so
> lets just skip them.
s,files,files in the .pc directory,?
besides that looks like a sane change.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] insane.bbclass: Skip '.pc' in qa_configure
2010-10-01 21:49 ` Tom Rini
2010-10-01 21:56 ` Tom Rini
@ 2010-10-02 20:35 ` Khem Raj
1 sibling, 0 replies; 6+ messages in thread
From: Khem Raj @ 2010-10-02 20:35 UTC (permalink / raw)
To: openembedded-devel
On Fri, Oct 1, 2010 at 2:49 PM, Tom Rini <tom_rini@mentor.com> wrote:
> Signed-off-by: Tom Rini <tom_rini@mentor.com>
Acked-by: Khem Raj <raj.khem@gmail.com>
> ---
> classes/insane.bbclass | 2 ++
> 1 files changed, 2 insertions(+), 0 deletions(-)
>
> diff --git a/classes/insane.bbclass b/classes/insane.bbclass
> index 5afa63c..9087efd 100644
> --- a/classes/insane.bbclass
> +++ b/classes/insane.bbclass
> @@ -466,6 +466,8 @@ python do_qa_configure() {
> configs = []
> bb.debug(1, "Checking sanity of the config.log file")
> for root, dirs, files in os.walk(bb.data.getVar('WORKDIR', d, True)):
> + if ".pc" in root:
> + continue
> statement = "grep 'CROSS COMPILE Badness:' %s > /dev/null" % \
> os.path.join(root,"config.log")
> if "config.log" in files:
> --
> 1.6.3.3
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] insane.bbclass: Skip '.pc' in qa_configure
2010-10-02 6:10 ` Holger Freyther
@ 2010-10-03 1:59 ` Tom Rini
0 siblings, 0 replies; 6+ messages in thread
From: Tom Rini @ 2010-10-03 1:59 UTC (permalink / raw)
To: openembedded-devel
Holger Freyther wrote:
> On 10/02/2010 05:56 AM, Tom Rini wrote:
>> Tom Rini wrote:
>>
>> --compose didn't stick, grr.
>>
>> These files won't have anything useful in them and are often unreadable so
>> lets just skip them.
>
> s,files,files in the .pc directory,?
>
> besides that looks like a sane change.
I'll make the desc read better, thanks :)
--
Tom Rini
Mentor Graphics Corporation
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2010-10-03 2:00 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-01 21:49 [PATCH] insane.bbclass: Skip '.pc' in qa_configure Tom Rini
2010-10-01 21:49 ` Tom Rini
2010-10-01 21:56 ` Tom Rini
2010-10-02 6:10 ` Holger Freyther
2010-10-03 1:59 ` Tom Rini
2010-10-02 20:35 ` Khem Raj
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.