diff options
author | Christopher Larson <kergoth@gmail.com> | 2015-06-24 15:17:45 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-27 22:42:55 +0100 |
commit | 83a66112487c58f19fda1b2dcf57894c886d82e7 (patch) | |
tree | 52ab4aa77c13f1ce436cdc07703fa0336181195d /meta/lib/oe | |
parent | 01c9c7394dee8d70e91c3ec5688620f02d9cb811 (diff) | |
download | poky-83a66112487c58f19fda1b2dcf57894c886d82e7.tar.gz |
oe.recipeutils: fix line.split error in bbappend_recipe
Cc: Paul Eggleton <paul.eggleton@linux.intel.com>
(From OE-Core rev: 8d18c2e71b0fcb047831a67d93f4b489aff1b77d)
Signed-off-by: Christopher Larson <kergoth@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe')
-rw-r--r-- | meta/lib/oe/recipeutils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/recipeutils.py b/meta/lib/oe/recipeutils.py index 26bbf3e5c9..d8094c8769 100644 --- a/meta/lib/oe/recipeutils.py +++ b/meta/lib/oe/recipeutils.py | |||
@@ -436,7 +436,7 @@ def bbappend_recipe(rd, destlayerdir, srcfiles, install=None, wildcardver=False, | |||
436 | for line in extralines: | 436 | for line in extralines: |
437 | if line[-1] == '\n': | 437 | if line[-1] == '\n': |
438 | line = line[:-1] | 438 | line = line[:-1] |
439 | splitline = line.split(maxsplit=2) | 439 | splitline = line.split(None, 2) |
440 | if len(splitline) == 3: | 440 | if len(splitline) == 3: |
441 | bbappendlines.append(tuple(splitline)) | 441 | bbappendlines.append(tuple(splitline)) |
442 | else: | 442 | else: |