From patchwork Thu May 24 10:04:54 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: opkg-nogpg: add file path Date: Thu, 24 May 2012 10:04:54 -0000 From: Richard Purdie X-Patchwork-Id: 28597 Message-Id: <1337853894.8248.108.camel@ted> To: openembedded-core From: Paul Eggleton There was no explicit path in FILESPATH for this recipe to allow it to find files referred to in SRC_URI (files shared with the standard opkg recipe). This problem may have been masked by the fetcher behaviour of looking for files last in DL_DIR, thus if opkg has been fetched beforehand there would have been no error. Signed-off-by: Paul Eggleton Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/opkg/opkg-nogpg_0.1.8.bb b/meta/recipes-devtools/opkg/opkg-nogpg_0.1.8.bb index 259a60e..64a34f8 100644 --- a/meta/recipes-devtools/opkg/opkg-nogpg_0.1.8.bb +++ b/meta/recipes-devtools/opkg/opkg-nogpg_0.1.8.bb @@ -3,6 +3,8 @@ require opkg_${PV}.bb DEPENDS = "curl" PROVIDES += "opkg" +FILESEXTRAPATHS_prepend := "${THISDIR}/opkg-0.1.8:" + EXTRA_OECONF += "--disable-gpg" DEFAULT_PREFERENCE = "-1"