mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-19 20:59:01 +02:00
bulkchange.py: fix regression
It seems that in df492b1277
the original
intention was to move setup_layer to the utils module, but that didn't
actually get done in the final patch - however the change was made here
to accommodate the move, meaning it's been broken since then. Revert
that so we're actually calling the function in the place it exists.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
This commit is contained in:
parent
351a2526d6
commit
7e467585ae
|
@ -44,7 +44,7 @@ def generate_patches(tinfoil, fetchdir, changeset, outputdir):
|
|||
layerfetchdir = os.path.join(fetchdir, layer.get_fetch_dir())
|
||||
utils.checkout_layer_branch(layerbranch, layerfetchdir)
|
||||
layerdir = os.path.join(layerfetchdir, layerbranch.vcs_subdir)
|
||||
config_data_copy = utils.setup_layer(tinfoil.config_data, fetchdir, layerdir, layer, layerbranch)
|
||||
config_data_copy = recipeparse.setup_layer(tinfoil.config_data, fetchdir, layerdir, layer, layerbranch)
|
||||
if outfile:
|
||||
outfile.close()
|
||||
outfile = open(os.path.join(tmpoutdir, patchname), 'w')
|
||||
|
|
Loading…
Reference in New Issue
Block a user