All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] Fix buildhistory regression
@ 2014-09-09 10:05 Paul Eggleton
  2014-09-09 10:05 ` [PATCH 1/1] classes/sstate: fix regression affecting buildhistory Paul Eggleton
  0 siblings, 1 reply; 3+ messages in thread
From: Paul Eggleton @ 2014-09-09 10:05 UTC (permalink / raw)
  To: openembedded-core

The following change since commit e72aac2ae9e5fce1715fa04b7e94034fd06892d9:

  alsa-lib: libasound should runtime depends on alsa-conf (2014-09-03 11:30:11 +0100)

is available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib paule/sstate-buildhistory
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=paule/sstate-buildhistory

Paul Eggleton (1):
  classes/sstate: fix regression affecting buildhistory

 meta/classes/sstate.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
1.9.3



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

* [PATCH 1/1] classes/sstate: fix regression affecting buildhistory
  2014-09-09 10:05 [PATCH 0/1] Fix buildhistory regression Paul Eggleton
@ 2014-09-09 10:05 ` Paul Eggleton
  2014-09-09 10:35   ` Paul Eggleton
  0 siblings, 1 reply; 3+ messages in thread
From: Paul Eggleton @ 2014-09-09 10:05 UTC (permalink / raw)
  To: openembedded-core

SSTATEPOSTINSTFUNCS needs to be set with ?= here - if it's = it'll wipe
out what is set in that variable in buildhistory, which ends up being
parsed earlier than the statement in sstate.bbclass. This fixes
buildhistory no longer recording package information since OE-Core
revision 9d659c6f20fa4a141b491c62a3ef0dfb1f896d9c.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta/classes/sstate.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass
index ead829e..6a77d18 100644
--- a/meta/classes/sstate.bbclass
+++ b/meta/classes/sstate.bbclass
@@ -35,7 +35,7 @@ SSTATE_MANMACH ?= "${SSTATE_PKGARCH}"
 SSTATECREATEFUNCS = "sstate_hardcode_path"
 SSTATEPREINSTFUNCS = ""
 SSTATEPOSTUNPACKFUNCS = "sstate_hardcode_path_unpack"
-SSTATEPOSTINSTFUNCS = ""
+SSTATEPOSTINSTFUNCS ?= ""
 EXTRA_STAGING_FIXMES ?= ""
 
 # Specify dirs in which the shell function is executed and don't use ${B}
-- 
1.9.3



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

* Re: [PATCH 1/1] classes/sstate: fix regression affecting buildhistory
  2014-09-09 10:05 ` [PATCH 1/1] classes/sstate: fix regression affecting buildhistory Paul Eggleton
@ 2014-09-09 10:35   ` Paul Eggleton
  0 siblings, 0 replies; 3+ messages in thread
From: Paul Eggleton @ 2014-09-09 10:35 UTC (permalink / raw)
  To: openembedded-core

On Tuesday 09 September 2014 11:05:56 Paul Eggleton wrote:
> SSTATEPOSTINSTFUNCS needs to be set with ?= here - if it's = it'll wipe
> out what is set in that variable in buildhistory, which ends up being
> parsed earlier than the statement in sstate.bbclass. This fixes
> buildhistory no longer recording package information since OE-Core
> revision 9d659c6f20fa4a141b491c62a3ef0dfb1f896d9c.
> 
> Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
> ---
>  meta/classes/sstate.bbclass | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass
> index ead829e..6a77d18 100644
> --- a/meta/classes/sstate.bbclass
> +++ b/meta/classes/sstate.bbclass
> @@ -35,7 +35,7 @@ SSTATE_MANMACH ?= "${SSTATE_PKGARCH}"
>  SSTATECREATEFUNCS = "sstate_hardcode_path"
>  SSTATEPREINSTFUNCS = ""
>  SSTATEPOSTUNPACKFUNCS = "sstate_hardcode_path_unpack"
> -SSTATEPOSTINSTFUNCS = ""
> +SSTATEPOSTINSTFUNCS ?= ""
>  EXTRA_STAGING_FIXMES ?= ""
> 
>  # Specify dirs in which the shell function is executed and don't use ${B}

OK, so Richard informs me that there was a good reason for making this change. 
v2 incoming.

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre


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

end of thread, other threads:[~2014-09-09 10:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-09 10:05 [PATCH 0/1] Fix buildhistory regression Paul Eggleton
2014-09-09 10:05 ` [PATCH 1/1] classes/sstate: fix regression affecting buildhistory Paul Eggleton
2014-09-09 10:35   ` Paul Eggleton

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.