@@ -1540,7 +1540,7 @@ def _update_recipe_srcrev(recipename, workspace, srctree, rd, appendlayerdir, wi
remove_files = []
patchfields = {}
patchfields['SRCREV'] = srcrev
- orig_src_uri = rd.getVar('SRC_URI', False) or ''
+ orig_src_uri = rd.getVar('SRC_URI') or ''
srcuri = orig_src_uri.split()
tempdir = tempfile.mkdtemp(prefix='devtool')
update_srcuri = False
@@ -1672,7 +1672,7 @@ def _update_recipe_patch(recipename, workspace, srctree, rd, appendlayerdir, wil
updatefiles = False
updaterecipe = False
destpath = None
- srcuri = (rd.getVar('SRC_URI', False) or '').split()
+ srcuri = (rd.getVar('SRC_URI') or '').split()
if appendlayerdir:
files = OrderedDict((os.path.join(local_files_dir, key), val) for
@@ -359,7 +359,7 @@ def _create_new_recipe(newpv, checksums, srcrev, srcbranch, srcsubdir_old, srcsu
newvalues['SRCREV'] = srcrev
if srcbranch:
- src_uri = oe.recipeutils.split_var_value(rd.getVar('SRC_URI', False) or '')
+ src_uri = oe.recipeutils.split_var_value(rd.getVar('SRC_URI') or '')
changed = False
replacing = True
new_src_uri = []