From c6feb6e97c9929560b1e3cec280c1d7976ecc030 Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Fri, 26 Jun 2015 06:24:29 -0700 Subject: recipetool.append: add extralines arg to appendsrc This makes the function more reusable for other sub-commands. Signed-off-by: Christopher Larson Signed-off-by: Ross Burton --- scripts/lib/recipetool/append.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/lib/recipetool/append.py b/scripts/lib/recipetool/append.py index 3f2f9a4f4f..ed7d0d4b27 100644 --- a/scripts/lib/recipetool/append.py +++ b/scripts/lib/recipetool/append.py @@ -337,7 +337,7 @@ def appendfile(args): return 3 -def appendsrc(args, files, rd): +def appendsrc(args, files, rd, extralines=None): import oe.recipeutils srcdir = rd.getVar('S', True) @@ -352,7 +352,7 @@ def appendsrc(args, files, rd): simplified[str(simple_uri)] = uri copyfiles = {} - extralines = [] + extralines = extralines or [] for newfile, srcfile in files.iteritems(): src_destdir = os.path.dirname(srcfile) if not args.use_workdir: -- cgit 1.2.3-korg