All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] image.bbclass: use soft assignment for LDCONFIGDEPEND
@ 2011-05-17 12:31 Phil Blundell
  2011-05-17 12:57 ` Koen Kooi
  2011-05-17 13:46 ` Richard Purdie
  0 siblings, 2 replies; 4+ messages in thread
From: Phil Blundell @ 2011-05-17 12:31 UTC (permalink / raw)
  To: openembedded-core

This allows distros that don't want ldconfig to turn it off.

Signed-off-by: Phil Blundell <philb@gnu.org>
---
 meta/classes/image.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index b2325b3..346dd5e 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -23,7 +23,7 @@ PID = "${@os.getpid()}"

 PACKAGE_ARCH = "${MACHINE_ARCH}"

-LDCONFIGDEPEND = "ldconfig-native:do_populate_sysroot"
+LDCONFIGDEPEND ?= "ldconfig-native:do_populate_sysroot"
 LDCONFIGDEPEND_linux-uclibc = ""
 LDCONFIGDEPEND_linux-uclibceabi = ""

--
1.7.1






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

* Re: [PATCH] image.bbclass: use soft assignment for LDCONFIGDEPEND
  2011-05-17 12:31 [PATCH] image.bbclass: use soft assignment for LDCONFIGDEPEND Phil Blundell
@ 2011-05-17 12:57 ` Koen Kooi
  2011-05-17 13:53   ` Richard Purdie
  2011-05-17 13:46 ` Richard Purdie
  1 sibling, 1 reply; 4+ messages in thread
From: Koen Kooi @ 2011-05-17 12:57 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer


Op 17 mei 2011, om 14:31 heeft Phil Blundell het volgende geschreven:

> This allows distros that don't want ldconfig to turn it off.
> 
> Signed-off-by: Phil Blundell <philb@gnu.org>
> ---
> meta/classes/image.bbclass |    2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
> index b2325b3..346dd5e 100644
> --- a/meta/classes/image.bbclass
> +++ b/meta/classes/image.bbclass
> @@ -23,7 +23,7 @@ PID = "${@os.getpid()}"
> 
> PACKAGE_ARCH = "${MACHINE_ARCH}"
> 
> -LDCONFIGDEPEND = "ldconfig-native:do_populate_sysroot"
> +LDCONFIGDEPEND ?= "ldconfig-native:do_populate_sysroot"
> LDCONFIGDEPEND_linux-uclibc = ""
> LDCONFIGDEPEND_linux-uclibceabi = ""

The 2 last lines need to switch to _libc-uclibc overrides as well



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

* Re: [PATCH] image.bbclass: use soft assignment for LDCONFIGDEPEND
  2011-05-17 12:31 [PATCH] image.bbclass: use soft assignment for LDCONFIGDEPEND Phil Blundell
  2011-05-17 12:57 ` Koen Kooi
@ 2011-05-17 13:46 ` Richard Purdie
  1 sibling, 0 replies; 4+ messages in thread
From: Richard Purdie @ 2011-05-17 13:46 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: openembedded-core

On Tue, 2011-05-17 at 13:31 +0100, Phil Blundell wrote:
> This allows distros that don't want ldconfig to turn it off.
> 
> Signed-off-by: Phil Blundell <philb@gnu.org>
> ---
>  meta/classes/image.bbclass |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
> index b2325b3..346dd5e 100644
> --- a/meta/classes/image.bbclass
> +++ b/meta/classes/image.bbclass
> @@ -23,7 +23,7 @@ PID = "${@os.getpid()}"
> 
>  PACKAGE_ARCH = "${MACHINE_ARCH}"
> 
> -LDCONFIGDEPEND = "ldconfig-native:do_populate_sysroot"
> +LDCONFIGDEPEND ?= "ldconfig-native:do_populate_sysroot"
>  LDCONFIGDEPEND_linux-uclibc = ""
>  LDCONFIGDEPEND_linux-uclibceabi = ""
> 

Applied, thanks (when I can push to the repo).

Cheers,

Richard




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

* Re: [PATCH] image.bbclass: use soft assignment for LDCONFIGDEPEND
  2011-05-17 12:57 ` Koen Kooi
@ 2011-05-17 13:53   ` Richard Purdie
  0 siblings, 0 replies; 4+ messages in thread
From: Richard Purdie @ 2011-05-17 13:53 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Tue, 2011-05-17 at 14:57 +0200, Koen Kooi wrote:
> Op 17 mei 2011, om 14:31 heeft Phil Blundell het volgende geschreven:
> 
> > This allows distros that don't want ldconfig to turn it off.
> > 
> > Signed-off-by: Phil Blundell <philb@gnu.org>
> > ---
> > meta/classes/image.bbclass |    2 +-
> > 1 files changed, 1 insertions(+), 1 deletions(-)
> > 
> > diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
> > index b2325b3..346dd5e 100644
> > --- a/meta/classes/image.bbclass
> > +++ b/meta/classes/image.bbclass
> > @@ -23,7 +23,7 @@ PID = "${@os.getpid()}"
> > 
> > PACKAGE_ARCH = "${MACHINE_ARCH}"
> > 
> > -LDCONFIGDEPEND = "ldconfig-native:do_populate_sysroot"
> > +LDCONFIGDEPEND ?= "ldconfig-native:do_populate_sysroot"
> > LDCONFIGDEPEND_linux-uclibc = ""
> > LDCONFIGDEPEND_linux-uclibceabi = ""
> 
> The 2 last lines need to switch to _libc-uclibc overrides as well

I've queued this (and the other libc override issue) up as a patch. You
can send patches for these though ;-)

Cheers,

Richard




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

end of thread, other threads:[~2011-05-17 13:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-17 12:31 [PATCH] image.bbclass: use soft assignment for LDCONFIGDEPEND Phil Blundell
2011-05-17 12:57 ` Koen Kooi
2011-05-17 13:53   ` Richard Purdie
2011-05-17 13:46 ` Richard Purdie

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.