From: Christopher Larson Date: Wed, 24 Jun 2015 22:17:45 +0000 (-0700) Subject: oe.recipeutils: fix line.split error in bbappend_recipe X-Git-Tag: 2015-10~1442 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=8d18c2e71b0fcb047831a67d93f4b489aff1b77d;p=openembedded-core.git oe.recipeutils: fix line.split error in bbappend_recipe Cc: Paul Eggleton Signed-off-by: Christopher Larson Signed-off-by: Richard Purdie --- 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, for line in extralines: if line[-1] == '\n': line = line[:-1] - splitline = line.split(maxsplit=2) + splitline = line.split(None, 2) if len(splitline) == 3: bbappendlines.append(tuple(splitline)) else: