diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2016-04-28 01:06:18 +1200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-06 10:30:57 +0100 |
commit | 8c522f1f536270e195c8c73f5c72801495e7b33b (patch) | |
tree | d114f688999a850fe873831abf1e1bb2df90d8c4 /meta/lib | |
parent | 5bf5e68e540dc4e034288702094d306ebd19fef9 (diff) | |
download | openembedded-core-contrib-8c522f1f536270e195c8c73f5c72801495e7b33b.tar.gz |
recipetool: create: fix picking up false npm package directories
It is possible for a Node.js module to have node_modules subdirectories
that contain no package.json file (e.g. iotivity-node has such a
directory). It appears these should simply be ignored, or else with the
way the current code works we will get errors later.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oe/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/package.py b/meta/lib/oe/package.py index 2887689541e..252e32d1df2 100644 --- a/meta/lib/oe/package.py +++ b/meta/lib/oe/package.py @@ -149,7 +149,7 @@ def npm_split_package_dirs(pkgdir): if os.path.exists(pkgfile): with open(pkgfile, 'r') as f: data = json.loads(f.read()) - packages[pkgname] = (relpth, data) + packages[pkgname] = (relpth, data) # We want the main package for a module sorted *after* its subpackages # (so that it doesn't otherwise steal the files for the subpackage), so # this is a cheap way to do that whilst still having an otherwise |