From: Robert Yang Date: Thu, 10 Sep 2015 09:12:39 +0000 (-0700) Subject: sstate.bbclass: fixes for SSTATE_SIG_KEY when use SSTATE_MIRRORS X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fheads%2Frbt%2Fss;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git sstate.bbclass: fixes for SSTATE_SIG_KEY when use SSTATE_MIRRORS Fixed: WARNING: Failed to fetch URL file://Ubuntu-12.04/39/sstate:m4-native:x86_64-linux:1.4.17:r0:x86_64:3:39ecb836d5fc7802ce6f45f33f1cae36_populate_sysroot.tgz.sig, attempting MIRRORS if available ERROR: Fetcher failure: Unable to find file file://Ubuntu-12.04/39/sstate:m4-native:x86_64-linux:1.4.17:r0:x86_64:3:39ecb836d5fc7802ce6f45f33f1cae36_populate_sysroot.tgz.sig anywhere. The paths that were searched were: Signed-off-by: Robert Yang --- diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 77313bcfbcd..7e682fe4646 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass @@ -615,9 +615,10 @@ def pstaging_fetch(sstatefetch, sstatepkg, d): # Try a fetch from the sstate mirror, if it fails just return and # we will build the package - for srcuri in ['file://{0}'.format(sstatefetch), - 'file://{0}.siginfo'.format(sstatefetch), - 'file://{0}.sig'.format(sstatefetch)]: + srcuris = ['file://{0}'.format(sstatefetch), 'file://{0}.siginfo'.format(sstatefetch)] + if d.getVar("SSTATE_SIG_KEY", True): + srcuris.append('file://{0}.sig'.format(sstatefetch)) + for srcuri in srcuris: localdata.setVar('SRC_URI', srcuri) try: fetcher = bb.fetch2.Fetch([srcuri], localdata, cache=False)