diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2011-07-22 18:18:50 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-25 12:54:17 +0100 |
commit | 72e0b43e0149ba63936aae69bc6028e997f7df12 (patch) | |
tree | fda6689db67e85c9f45e0f08e0d2f6db844a1c53 /bitbake | |
parent | d7e17ee92fb1ebcfe250668f7b4001c6a74a33ca (diff) | |
download | poky-72e0b43e0149ba63936aae69bc6028e997f7df12.tar.gz |
bitbake-layers: remove unneeded do_EOF
do_EOF is only needed when using the Python cmd class in line-oriented
mode - we are just sending single commands to it.
(Bitbake rev: 0cbf5dcaf9f67522bd58d868aa01f28e846dfc19)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rwxr-xr-x | bitbake/bin/bitbake-layers | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/bitbake/bin/bitbake-layers b/bitbake/bin/bitbake-layers index 746d79ddec..3d563b5fca 100755 --- a/bitbake/bin/bitbake-layers +++ b/bitbake/bin/bitbake-layers | |||
@@ -240,9 +240,6 @@ Recipes are listed with the bbappends that apply to them as subitems. | |||
240 | notappended.append(basename) | 240 | notappended.append(basename) |
241 | return appended, notappended | 241 | return appended, notappended |
242 | 242 | ||
243 | def do_EOF(self, line): | ||
244 | return True | ||
245 | |||
246 | 243 | ||
247 | class Config(object): | 244 | class Config(object): |
248 | def __init__(self, **options): | 245 | def __init__(self, **options): |