All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] glib-2.0: Clean up OECONF flags into one variable
@ 2012-05-25  8:01 Richard Purdie
  2012-05-25  8:51 ` Martin Jansa
  0 siblings, 1 reply; 2+ messages in thread
From: Richard Purdie @ 2012-05-25  8:01 UTC (permalink / raw)
  To: openembedded-core

Without this change, libelf was "floating" for linuxstdbase for example,
leading to build failures. This patch moves all the common options
into a common variable.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
diff --git a/meta/recipes-core/glib-2.0/glib-2.0_2.32.3.bb b/meta/recipes-core/glib-2.0/glib-2.0_2.32.3.bb
index c453941..64441ee 100644
--- a/meta/recipes-core/glib-2.0/glib-2.0_2.32.3.bb
+++ b/meta/recipes-core/glib-2.0/glib-2.0_2.32.3.bb
@@ -21,8 +21,6 @@ SRC_URI[sha256sum] = "b65ceb462807e4a2f91c95e4293ce6bbefca308cb44a1407bcfdd9e403
 SRC_URI_append_virtclass-native = " file://glib-gettextize-dir.patch"
 BBCLASSEXTEND = "native nativesdk"
 
-EXTRA_OECONF = "--disable-libelf"
-
 PERLPATH = "${bindir}/env perl"
 PERLPATH_virtclass-native = "/usr/bin/env perl"
 PERLPATH_virtclass-nativesdk = "/usr/bin/env perl"
diff --git a/meta/recipes-core/glib-2.0/glib.inc b/meta/recipes-core/glib-2.0/glib.inc
index 33f7613..1dbd538 100644
--- a/meta/recipes-core/glib-2.0/glib.inc
+++ b/meta/recipes-core/glib-2.0/glib.inc
@@ -25,9 +25,11 @@ inherit autotools pkgconfig gettext
 
 S = "${WORKDIR}/glib-${PV}"
 
-EXTRA_OECONF = "--disable-debug --enable-included-printf=no --disable-dtrace --disable-fam"
-EXTRA_OECONF_virtclass-native = "--disable-dtrace --disable-systemtap --disable-fam"
-EXTRA_OECONF_linuxstdbase = "--enable-included-printf=no --disable-dtrace --disable-fam"
+CORECONF = "--disable-dtrace --disable-fam --disable-libelf --disable-systemtap"
+
+EXTRA_OECONF = "--disable-debug --enable-included-printf=no ${CORECONF}"
+EXTRA_OECONF_virtclass-native = "${CORECONF}"
+EXTRA_OECONF_linuxstdbase = "--enable-included-printf=no ${CORECONF}"
 
 FILES_${PN} = "${libdir}/lib*${SOLIBS} ${sysconfdir}/bash_completion.d ${datadir}/glib-2.0/schemas"
 FILES_${PN}-dev += "${libdir}/glib-2.0/include \





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

* Re: [PATCH] glib-2.0: Clean up OECONF flags into one variable
  2012-05-25  8:01 [PATCH] glib-2.0: Clean up OECONF flags into one variable Richard Purdie
@ 2012-05-25  8:51 ` Martin Jansa
  0 siblings, 0 replies; 2+ messages in thread
From: Martin Jansa @ 2012-05-25  8:51 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: openembedded-core

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

On Fri, May 25, 2012 at 09:01:18AM +0100, Richard Purdie wrote:
> Without this change, libelf was "floating" for linuxstdbase for example,
> leading to build failures. This patch moves all the common options
> into a common variable.
> 
> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
> ---
> diff --git a/meta/recipes-core/glib-2.0/glib-2.0_2.32.3.bb b/meta/recipes-core/glib-2.0/glib-2.0_2.32.3.bb
> index c453941..64441ee 100644
> --- a/meta/recipes-core/glib-2.0/glib-2.0_2.32.3.bb
> +++ b/meta/recipes-core/glib-2.0/glib-2.0_2.32.3.bb
> @@ -21,8 +21,6 @@ SRC_URI[sha256sum] = "b65ceb462807e4a2f91c95e4293ce6bbefca308cb44a1407bcfdd9e403
>  SRC_URI_append_virtclass-native = " file://glib-gettextize-dir.patch"
>  BBCLASSEXTEND = "native nativesdk"
>  
> -EXTRA_OECONF = "--disable-libelf"
> -
>  PERLPATH = "${bindir}/env perl"
>  PERLPATH_virtclass-native = "/usr/bin/env perl"
>  PERLPATH_virtclass-nativesdk = "/usr/bin/env perl"
> diff --git a/meta/recipes-core/glib-2.0/glib.inc b/meta/recipes-core/glib-2.0/glib.inc
> index 33f7613..1dbd538 100644
> --- a/meta/recipes-core/glib-2.0/glib.inc
> +++ b/meta/recipes-core/glib-2.0/glib.inc
> @@ -25,9 +25,11 @@ inherit autotools pkgconfig gettext
>  
>  S = "${WORKDIR}/glib-${PV}"
>  
> -EXTRA_OECONF = "--disable-debug --enable-included-printf=no --disable-dtrace --disable-fam"
> -EXTRA_OECONF_virtclass-native = "--disable-dtrace --disable-systemtap --disable-fam"
> -EXTRA_OECONF_linuxstdbase = "--enable-included-printf=no --disable-dtrace --disable-fam"
> +CORECONF = "--disable-dtrace --disable-fam --disable-libelf --disable-systemtap"
> +
> +EXTRA_OECONF = "--disable-debug --enable-included-printf=no ${CORECONF}"
> +EXTRA_OECONF_virtclass-native = "${CORECONF}"
> +EXTRA_OECONF_linuxstdbase = "--enable-included-printf=no ${CORECONF}"
>  
>  FILES_${PN} = "${libdir}/lib*${SOLIBS} ${sysconfdir}/bash_completion.d ${datadir}/glib-2.0/schemas"
>  FILES_${PN}-dev += "${libdir}/glib-2.0/include \

Ah sorry for that EXTRA_OECONF in .bb, looks much better, please add PR
bump.

Cheers,

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

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

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

end of thread, other threads:[~2012-05-25  9:01 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-25  8:01 [PATCH] glib-2.0: Clean up OECONF flags into one variable Richard Purdie
2012-05-25  8:51 ` Martin Jansa

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.