All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] acpitest: fixing failing recipe
@ 2014-12-04 12:43 Raphael Silva
  2014-12-04 15:09 ` Raphael Philipe
  0 siblings, 1 reply; 4+ messages in thread
From: Raphael Silva @ 2014-12-04 12:43 UTC (permalink / raw)
  To: openembedded-devel

Removed from blacklist and fixed do_compile error due to sysroot poisoning.
Fixed removing the redefinition of CC.

Signed-off-by: Raphael Silva <rapphil@gmail.com>
---
 meta-oe/recipes-extended/acpica/acpitests_20140828.bb | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/meta-oe/recipes-extended/acpica/acpitests_20140828.bb b/meta-oe/recipes-extended/acpica/acpitests_20140828.bb
index 75e10f6..93c20af 100644
--- a/meta-oe/recipes-extended/acpica/acpitests_20140828.bb
+++ b/meta-oe/recipes-extended/acpica/acpitests_20140828.bb
@@ -6,7 +6,6 @@ LIC_FILES_CHKSUM = "file://tests/aapits/atexec.c;beginline=1;endline=115;md5=e92
 
 DEPENDS = "bison flex"
 
-PNBLACKLIST[acpitests] = "fails to find string.h since sysroot poisoning was added in internal toolchain"
 
 SRC_URI = "https://acpica.org/sites/acpica/files/acpitests-unix-${PV}.tar.gz;name=acpitests \
            https://acpica.org/sites/acpica/files/acpica-unix2-${PV}.tar.gz;name=acpica \
@@ -20,7 +19,7 @@ SRC_URI[acpica.sha256sum] = "01d8867656c5ba41dec307c4383ce676196ad4281ac2c9dec9f
 
 S = "${WORKDIR}/acpitests-unix-${PV}"
 
-EXTRA_OEMAKE = "'CC=${TARGET_PREFIX}gcc ${HOST_CC_ARCH}' 'OPT_CFLAGS=-Wall'"
+EXTRA_OEMAKE = "'${HOST_CC_ARCH}' 'OPT_CFLAGS=-Wall'"
 
 # The Makefiles expect a specific layout
 do_compile() {
-- 
1.9.1



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

* Re: [PATCH] acpitest: fixing failing recipe
  2014-12-04 12:43 [PATCH] acpitest: fixing failing recipe Raphael Silva
@ 2014-12-04 15:09 ` Raphael Philipe
  2014-12-04 15:56   ` Martin Jansa
  0 siblings, 1 reply; 4+ messages in thread
From: Raphael Philipe @ 2014-12-04 15:09 UTC (permalink / raw)
  To: openembedded-devel

I noticed two typos in my patch. First i didn't use the prefix
[meta-oe], and second, in the subject, it is acpitestS the name of the
module.

It will not happen again :)
regards,

On Thu, Dec 4, 2014 at 10:43 AM, Raphael Silva <rapphil@gmail.com> wrote:
> Removed from blacklist and fixed do_compile error due to sysroot poisoning.
> Fixed removing the redefinition of CC.
>
> Signed-off-by: Raphael Silva <rapphil@gmail.com>
> ---
>  meta-oe/recipes-extended/acpica/acpitests_20140828.bb | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/meta-oe/recipes-extended/acpica/acpitests_20140828.bb b/meta-oe/recipes-extended/acpica/acpitests_20140828.bb
> index 75e10f6..93c20af 100644
> --- a/meta-oe/recipes-extended/acpica/acpitests_20140828.bb
> +++ b/meta-oe/recipes-extended/acpica/acpitests_20140828.bb
> @@ -6,7 +6,6 @@ LIC_FILES_CHKSUM = "file://tests/aapits/atexec.c;beginline=1;endline=115;md5=e92
>
>  DEPENDS = "bison flex"
>
> -PNBLACKLIST[acpitests] = "fails to find string.h since sysroot poisoning was added in internal toolchain"
>
>  SRC_URI = "https://acpica.org/sites/acpica/files/acpitests-unix-${PV}.tar.gz;name=acpitests \
>             https://acpica.org/sites/acpica/files/acpica-unix2-${PV}.tar.gz;name=acpica \
> @@ -20,7 +19,7 @@ SRC_URI[acpica.sha256sum] = "01d8867656c5ba41dec307c4383ce676196ad4281ac2c9dec9f
>
>  S = "${WORKDIR}/acpitests-unix-${PV}"
>
> -EXTRA_OEMAKE = "'CC=${TARGET_PREFIX}gcc ${HOST_CC_ARCH}' 'OPT_CFLAGS=-Wall'"
> +EXTRA_OEMAKE = "'${HOST_CC_ARCH}' 'OPT_CFLAGS=-Wall'"
>
>  # The Makefiles expect a specific layout
>  do_compile() {
> --
> 1.9.1
>


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

* Re: [PATCH] acpitest: fixing failing recipe
  2014-12-04 15:09 ` Raphael Philipe
@ 2014-12-04 15:56   ` Martin Jansa
  2014-12-04 18:24     ` Otavio Salvador
  0 siblings, 1 reply; 4+ messages in thread
From: Martin Jansa @ 2014-12-04 15:56 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2134 bytes --]

On Thu, Dec 04, 2014 at 01:09:18PM -0200, Raphael Philipe wrote:
> I noticed two typos in my patch. First i didn't use the prefix
> [meta-oe], and second, in the subject, it is acpitestS the name of the
> module.
> 
> It will not happen again :)

Cool, will fix when cherry-picking to master-next.

> regards,
> 
> On Thu, Dec 4, 2014 at 10:43 AM, Raphael Silva <rapphil@gmail.com> wrote:
> > Removed from blacklist and fixed do_compile error due to sysroot poisoning.
> > Fixed removing the redefinition of CC.
> >
> > Signed-off-by: Raphael Silva <rapphil@gmail.com>
> > ---
> >  meta-oe/recipes-extended/acpica/acpitests_20140828.bb | 3 +--
> >  1 file changed, 1 insertion(+), 2 deletions(-)
> >
> > diff --git a/meta-oe/recipes-extended/acpica/acpitests_20140828.bb b/meta-oe/recipes-extended/acpica/acpitests_20140828.bb
> > index 75e10f6..93c20af 100644
> > --- a/meta-oe/recipes-extended/acpica/acpitests_20140828.bb
> > +++ b/meta-oe/recipes-extended/acpica/acpitests_20140828.bb
> > @@ -6,7 +6,6 @@ LIC_FILES_CHKSUM = "file://tests/aapits/atexec.c;beginline=1;endline=115;md5=e92
> >
> >  DEPENDS = "bison flex"
> >
> > -PNBLACKLIST[acpitests] = "fails to find string.h since sysroot poisoning was added in internal toolchain"
> >
> >  SRC_URI = "https://acpica.org/sites/acpica/files/acpitests-unix-${PV}.tar.gz;name=acpitests \
> >             https://acpica.org/sites/acpica/files/acpica-unix2-${PV}.tar.gz;name=acpica \
> > @@ -20,7 +19,7 @@ SRC_URI[acpica.sha256sum] = "01d8867656c5ba41dec307c4383ce676196ad4281ac2c9dec9f
> >
> >  S = "${WORKDIR}/acpitests-unix-${PV}"
> >
> > -EXTRA_OEMAKE = "'CC=${TARGET_PREFIX}gcc ${HOST_CC_ARCH}' 'OPT_CFLAGS=-Wall'"
> > +EXTRA_OEMAKE = "'${HOST_CC_ARCH}' 'OPT_CFLAGS=-Wall'"
> >
> >  # The Makefiles expect a specific layout
> >  do_compile() {
> > --
> > 1.9.1
> >
> -- 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]

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

* Re: [PATCH] acpitest: fixing failing recipe
  2014-12-04 15:56   ` Martin Jansa
@ 2014-12-04 18:24     ` Otavio Salvador
  0 siblings, 0 replies; 4+ messages in thread
From: Otavio Salvador @ 2014-12-04 18:24 UTC (permalink / raw)
  To: OpenEmbedded Devel List

On Thu, Dec 4, 2014 at 1:56 PM, Martin Jansa <martin.jansa@gmail.com> wrote:
> On Thu, Dec 04, 2014 at 01:09:18PM -0200, Raphael Philipe wrote:
>> I noticed two typos in my patch. First i didn't use the prefix
>> [meta-oe], and second, in the subject, it is acpitestS the name of the
>> module.
>>
>> It will not happen again :)
>
> Cool, will fix when cherry-picking to master-next.

:-D

-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


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

end of thread, other threads:[~2014-12-04 18:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-04 12:43 [PATCH] acpitest: fixing failing recipe Raphael Silva
2014-12-04 15:09 ` Raphael Philipe
2014-12-04 15:56   ` Martin Jansa
2014-12-04 18:24     ` Otavio Salvador

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.