From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.windriver.com (mail.windriver.com [147.11.1.11]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id ECA39E00309 for ; Mon, 7 Nov 2011 08:06:40 -0800 (PST) Received: from ALA-HCA.corp.ad.wrs.com (ala-hca [147.11.189.40]) by mail.windriver.com (8.14.3/8.14.3) with ESMTP id pA7G6d36021765 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=FAIL) for ; Mon, 7 Nov 2011 08:06:39 -0800 (PST) Received: from Macintosh-5.local (172.25.36.232) by ALA-HCA.corp.ad.wrs.com (147.11.189.50) with Microsoft SMTP Server id 14.1.255.0; Mon, 7 Nov 2011 08:06:39 -0800 Message-ID: <4EB8020E.6000005@windriver.com> Date: Mon, 7 Nov 2011 10:06:38 -0600 From: Mark Hatle Organization: Wind River Systems User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:7.0.1) Gecko/20110929 Thunderbird/7.0.1 MIME-Version: 1.0 To: References: In-Reply-To: Subject: Re: do all recipes really need LIC_FILES_CHKSUM? X-BeenThere: yocto@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Discussion of all things Yocto List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Nov 2011 16:06:55 -0000 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit On 11/7/11 10:01 AM, Robert P. J. Day wrote: > > current poky ref manual seems pretty adamant about need for > LIC_FILES_CHKSUM: > > "Note that this variable is mandatory for all recipes, unless the > LICENSE variable is set to "CLOSED". > > but there's at least one counter-example, > meta-demoapps/recipes-graphics/pong-clock/pong-clock_1.0.bb: Bug in the example.. it should be fixed. --Mark > ===== > > DESCRIPTION = "A clock combined with a game of pong" > LICENSE = "GPLv2+" > DEPENDS = "virtual/libx11 xdmcp xau" > > SRC_URI = "file://pong-clock-no-flicker.c" > > S = "${WORKDIR}" > > do_compile () { > ${CC} -o pong-clock pong-clock-no-flicker.c `pkg-config --cflags --libs x11 xau xdmcp` > } > > do_install () { > install -d ${D}${bindir} > install -m 0755 pong-clock ${D}${bindir} > } > > ===== > > so what's the story here? > > rday >