All of lore.kernel.org
 help / color / mirror / Atom feed
* meta-selinux make ALLOW_EMPTY package specific
@ 2013-06-11  0:54 Philip Tricca
  2013-06-19 13:53 ` Philip Tricca
  0 siblings, 1 reply; 3+ messages in thread
From: Philip Tricca @ 2013-06-11  0:54 UTC (permalink / raw)
  To: mark.hatle, Xin.Ouyang; +Cc: yocto@yoctoproject.org

Hello again,

Again a quick patch to get meta-selinux dylan branch building with oe-core dylan.  The QA scripts error'd out complaining that ALLOW_EMPTY in the task-core-selinux wasn't packages specific.  Not sure if it's relevant but this was with the latest bitbake release branch 1.18.  One line fix below.

Regards,
- Philip

From: Philip Tricca <flihp@twobit.us>
Date: Mon, 10 Jun 2013 20:33:32 -0400
Subject: [PATCH 2/2] Make ALLOW_EMPTY package specific to keep QA scripts
 happy.

---
 recipes-security/tasks/task-core-selinux.bb |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-security/tasks/task-core-selinux.bb b/recipes-security/tasks/task-core-selinux.bb
index 05f8dfc..dda9c50 100644
--- a/recipes-security/tasks/task-core-selinux.bb
+++ b/recipes-security/tasks/task-core-selinux.bb
@@ -8,7 +8,7 @@ PACKAGES = "\
     task-core-selinux \
     "
 
-ALLOW_EMPTY = "1"
+ALLOW_EMPTY_${PN} = "1"
 
 RDEPENDS_task-core-selinux = " \
 	ustr \
-- 
1.7.10.4


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

* Re: meta-selinux make ALLOW_EMPTY package specific
  2013-06-11  0:54 meta-selinux make ALLOW_EMPTY package specific Philip Tricca
@ 2013-06-19 13:53 ` Philip Tricca
  2013-08-02  0:00   ` Mark Hatle
  0 siblings, 1 reply; 3+ messages in thread
From: Philip Tricca @ 2013-06-19 13:53 UTC (permalink / raw)
  To: mark.hatle; +Cc: yocto@yoctoproject.org

Ping.  Any interest in taking this (and the other patch I sent) into
meta-selinux?

Regards
- Philip

On 06/10/2013 08:54 PM, Philip Tricca wrote:
> Hello again,
> 
> Again a quick patch to get meta-selinux dylan branch building with oe-core dylan.  The QA scripts error'd out complaining that ALLOW_EMPTY in the task-core-selinux wasn't packages specific.  Not sure if it's relevant but this was with the latest bitbake release branch 1.18.  One line fix below.
> 
> Regards,
> - Philip
> 
> From: Philip Tricca <flihp@twobit.us>
> Date: Mon, 10 Jun 2013 20:33:32 -0400
> Subject: [PATCH 2/2] Make ALLOW_EMPTY package specific to keep QA scripts
>  happy.
> 
> ---
>  recipes-security/tasks/task-core-selinux.bb |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/recipes-security/tasks/task-core-selinux.bb b/recipes-security/tasks/task-core-selinux.bb
> index 05f8dfc..dda9c50 100644
> --- a/recipes-security/tasks/task-core-selinux.bb
> +++ b/recipes-security/tasks/task-core-selinux.bb
> @@ -8,7 +8,7 @@ PACKAGES = "\
>      task-core-selinux \
>      "
>  
> -ALLOW_EMPTY = "1"
> +ALLOW_EMPTY_${PN} = "1"
>  
>  RDEPENDS_task-core-selinux = " \
>  	ustr \



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

* Re: meta-selinux make ALLOW_EMPTY package specific
  2013-06-19 13:53 ` Philip Tricca
@ 2013-08-02  0:00   ` Mark Hatle
  0 siblings, 0 replies; 3+ messages in thread
From: Mark Hatle @ 2013-08-02  0:00 UTC (permalink / raw)
  To: Philip Tricca; +Cc: yocto@yoctoproject.org

On 6/19/13 8:53 AM, Philip Tricca wrote:
> Ping.  Any interest in taking this (and the other patch I sent) into
> meta-selinux?

My apologies, I thought this had been integrated already.  A similar patch has 
been pushed to the repository for the 'master' branch.  I have not yet validated 
the dylan, but as you indicated it should be needed there as well.

I should have the Dylan version ready and pushed within a few hours.

--Mark

> Regards
> - Philip
>
> On 06/10/2013 08:54 PM, Philip Tricca wrote:
>> Hello again,
>>
>> Again a quick patch to get meta-selinux dylan branch building with oe-core dylan.  The QA scripts error'd out complaining that ALLOW_EMPTY in the task-core-selinux wasn't packages specific.  Not sure if it's relevant but this was with the latest bitbake release branch 1.18.  One line fix below.
>>
>> Regards,
>> - Philip
>>
>> From: Philip Tricca <flihp@twobit.us>
>> Date: Mon, 10 Jun 2013 20:33:32 -0400
>> Subject: [PATCH 2/2] Make ALLOW_EMPTY package specific to keep QA scripts
>>   happy.
>>
>> ---
>>   recipes-security/tasks/task-core-selinux.bb |    2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/recipes-security/tasks/task-core-selinux.bb b/recipes-security/tasks/task-core-selinux.bb
>> index 05f8dfc..dda9c50 100644
>> --- a/recipes-security/tasks/task-core-selinux.bb
>> +++ b/recipes-security/tasks/task-core-selinux.bb
>> @@ -8,7 +8,7 @@ PACKAGES = "\
>>       task-core-selinux \
>>       "
>>
>> -ALLOW_EMPTY = "1"
>> +ALLOW_EMPTY_${PN} = "1"
>>
>>   RDEPENDS_task-core-selinux = " \
>>   	ustr \
>
>



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

end of thread, other threads:[~2013-08-02  0:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-11  0:54 meta-selinux make ALLOW_EMPTY package specific Philip Tricca
2013-06-19 13:53 ` Philip Tricca
2013-08-02  0:00   ` Mark Hatle

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.