aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/lib/recipetool/create_npm.py
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2017-08-23 23:54:48 +1200
committerPaul Eggleton <paul.eggleton@linux.intel.com>2017-08-24 00:12:31 +1200
commit597e0ce43d451de95397f296a8ed4627ca3ac880 (patch)
treee27183fe3aabe436a030171467c425f38a6576d9 /scripts/lib/recipetool/create_npm.py
parentf59e729f98ef9b506b0cfdc415567e03ec87f2a9 (diff)
downloadopenembedded-core-contrib-597e0ce43d451de95397f296a8ed4627ca3ac880.tar.gz
recipetool: create: fix broken import in npm module
With "import oe" in create_npm.py you get "AttributeError: module 'oe' has no attribute 'package'" when it tries to call oe.package.npm_split_package_dirs(). Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'scripts/lib/recipetool/create_npm.py')
-rw-r--r--scripts/lib/recipetool/create_npm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/recipetool/create_npm.py b/scripts/lib/recipetool/create_npm.py
index 07fcf4d883..6252e915b5 100644
--- a/scripts/lib/recipetool/create_npm.py
+++ b/scripts/lib/recipetool/create_npm.py
@@ -166,7 +166,7 @@ class NpmRecipeHandler(RecipeHandler):
def process(self, srctree, classes, lines_before, lines_after, handled, extravalues):
import bb.utils
- import oe
+ import oe.package
from collections import OrderedDict
if 'buildsystem' in handled: