From: Ola x Nilsson Date: Tue, 23 Aug 2016 07:28:10 +0000 (+0200) Subject: devtool: Use the wildcard flag in update_recipe_patch X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fheads%2Fpaule%2Fkrogoth-fixes-oe;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git devtool: Use the wildcard flag in update_recipe_patch The --wilcard-version flag was only used in the srcrev variant of the update-recipe command. (From OE-Core rev: d3057cba0b01484712fcee3c52373c143608a436) Signed-off-by: Ola x Nilsson Signed-off-by: Ross Burton Signed-off-by: Richard Purdie Signed-off-by: Paul Eggleton --- diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py index ae6517e1678..f4148608310 100644 --- a/scripts/lib/devtool/standard.py +++ b/scripts/lib/devtool/standard.py @@ -1163,6 +1163,7 @@ def _update_recipe_patch(args, config, workspace, srctree, rd, config_data): removevalues = {'SRC_URI': removedentries + remaining} _, destpath = oe.recipeutils.bbappend_recipe( rd, args.append, files, + wildcardver=args.wildcard_version, removevalues=removevalues) else: logger.info('No patches or local source files needed updating')