aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-12-17 12:24:02 -0700
committerMartin Jansa <Martin.Jansa@gmail.com>2011-04-22 19:41:09 +0200
commit8c4169c7cd9ef3e581bf3ff22be3644a44395b2d (patch)
treed1987771093142e059fc38a120e85a05f618a4eb
parent54616d252e05d87bb23af9b9c67d4640f4caad7a (diff)
downloadopenembedded-8c4169c7cd9ef3e581bf3ff22be3644a44395b2d.tar.gz
oe.patch: add missing bb imports
Signed-off-by: Chris Larson <chris_larson@mentor.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r--lib/oe/patch.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/oe/patch.py b/lib/oe/patch.py
index 4e709be6ad..0d946d1fed 100644
--- a/lib/oe/patch.py
+++ b/lib/oe/patch.py
@@ -2,6 +2,7 @@ import subprocess
import os
import oe.path
import oe.process
+import bb.fetch, bb.data
class PatchError(Exception):
def __init__(self, msg):