sstatesig: Update server URI

The server no longer uses a "http://" URI, since it has been updated to
use a different protocol.

(From OE-Core rev: 519561172c48bc7f7a61a3d02edd418fc0895b7b)

Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Joshua Watt
2019-09-16 12:49:44 -05:00
committed by Richard Purdie
parent b009e68ede
commit f12e41c1bb

View File

@@ -264,7 +264,7 @@ class SignatureGeneratorOEEquivHash(bb.siggen.SignatureGeneratorUniHashMixIn, Si
super().init_rundepcheck(data)
autostart = data.getVar('BB_HASHSERVE')
if autostart:
self.server = "http://" + autostart
self.server = autostart
else:
self.server = data.getVar('SSTATE_HASHEQUIV_SERVER')
if not self.server: