diff options
Diffstat (limited to 'scripts/lib')
-rw-r--r-- | scripts/lib/recipetool/append.py | 4 |
1 files 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): | |||
337 | return 3 | 337 | return 3 |
338 | 338 | ||
339 | 339 | ||
340 | def appendsrc(args, files, rd): | 340 | def appendsrc(args, files, rd, extralines=None): |
341 | import oe.recipeutils | 341 | import oe.recipeutils |
342 | 342 | ||
343 | srcdir = rd.getVar('S', True) | 343 | srcdir = rd.getVar('S', True) |
@@ -352,7 +352,7 @@ def appendsrc(args, files, rd): | |||
352 | simplified[str(simple_uri)] = uri | 352 | simplified[str(simple_uri)] = uri |
353 | 353 | ||
354 | copyfiles = {} | 354 | copyfiles = {} |
355 | extralines = [] | 355 | extralines = extralines or [] |
356 | for newfile, srcfile in files.iteritems(): | 356 | for newfile, srcfile in files.iteritems(): |
357 | src_destdir = os.path.dirname(srcfile) | 357 | src_destdir = os.path.dirname(srcfile) |
358 | if not args.use_workdir: | 358 | if not args.use_workdir: |