diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-12-22 11:00:43 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2011-01-04 14:46:53 +0000 |
commit | 8eee4221db79820fabaf929006ed052abfe7ccc0 (patch) | |
tree | 5a6b181d8ce34ef2371e73f0d16bb759e8486445 | |
parent | 1949d4f5e82c5f6605d0da2cf663f4ee400b37b5 (diff) | |
download | openembedded-core-8eee4221db79820fabaf929006ed052abfe7ccc0.tar.gz openembedded-core-8eee4221db79820fabaf929006ed052abfe7ccc0.tar.bz2 openembedded-core-8eee4221db79820fabaf929006ed052abfe7ccc0.zip |
pysh: add missing os.path import
(Bitbake rev: 6fb448a6cfb00aeb5dfc6c047915e0941e754348)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
-rw-r--r-- | bitbake/lib/bb/pysh/pyshyacc.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/pysh/pyshyacc.py b/bitbake/lib/bb/pysh/pyshyacc.py index 3d6f54a58c..a40d72c888 100644 --- a/bitbake/lib/bb/pysh/pyshyacc.py +++ b/bitbake/lib/bb/pysh/pyshyacc.py @@ -7,6 +7,7 @@ """PLY grammar file. """ +import os.path import sys import pyshlex |