From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga09.intel.com ([134.134.136.24]) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1SXaiC-0002qR-Ld for openembedded-core@lists.openembedded.org; Thu, 24 May 2012 18:16:30 +0200 Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga102.jf.intel.com with ESMTP; 24 May 2012 09:06:16 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.67,352,1309762800"; d="scan'208";a="144262923" Received: from unknown (HELO helios.ger.corp.intel.com) ([10.252.120.182]) by orsmga001.jf.intel.com with ESMTP; 24 May 2012 09:06:15 -0700 From: Paul Eggleton To: openembedded-core@lists.openembedded.org Date: Thu, 24 May 2012 17:06:12 +0100 Message-Id: <1337875572-17969-1-git-send-email-paul.eggleton@linux.intel.com> X-Mailer: git-send-email 1.7.9.5 Subject: [PATCH v2] opkg-nogpg: add file path X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list Reply-To: Patches and discussions about the oe-core layer List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 May 2012 16:16:30 -0000 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 --- meta/recipes-devtools/opkg/opkg-nogpg_0.1.8.bb | 2 ++ 1 file changed, 2 insertions(+) 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..da2a39c 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-${PV}:" + EXTRA_OECONF += "--disable-gpg" DEFAULT_PREFERENCE = "-1" -- 1.7.9.5