From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from www.twobit.us (www.twobit.us [50.19.210.51]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 93577E0151C for ; Mon, 10 Jun 2013 17:54:47 -0700 (PDT) Received: from c-76-24-20-220.hsd1.ma.comcast.net ([76.24.20.220] helo=[172.16.2.10]) by www.twobit.us with esmtpsa (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.72) (envelope-from ) id 1UmCrF-0007Yk-Nq; Tue, 11 Jun 2013 00:54:46 +0000 Message-ID: <51B67550.7070306@twobit.us> Date: Mon, 10 Jun 2013 20:54:40 -0400 From: Philip Tricca User-Agent: Mozilla/5.0 (X11; Linux i686; rv:10.0.12) Gecko/20130116 Icedove/10.0.12 MIME-Version: 1.0 To: mark.hatle@windriver.com, Xin.Ouyang@windriver.com X-Enigmail-Version: 1.4.1 X-SA-Exim-Connect-IP: 76.24.20.220 X-SA-Exim-Mail-From: flihp@twobit.us X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on www.twobit.us X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.1 X-SA-Exim-Version: 4.2.1 (built Mon, 22 Mar 2010 06:26:47 +0000) X-SA-Exim-Scanned: Yes (on www.twobit.us) Cc: "yocto@yoctoproject.org" Subject: meta-selinux make ALLOW_EMPTY package specific X-BeenThere: yocto@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Discussion of all things Yocto Project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jun 2013 00:54:48 -0000 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit 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 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