summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/lib/oe/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/package.py b/meta/lib/oe/package.py
index 2887689541..252e32d1df 100644
--- a/meta/lib/oe/package.py
+++ b/meta/lib/oe/package.py
@@ -149,7 +149,7 @@ def npm_split_package_dirs(pkgdir):
149 if os.path.exists(pkgfile): 149 if os.path.exists(pkgfile):
150 with open(pkgfile, 'r') as f: 150 with open(pkgfile, 'r') as f:
151 data = json.loads(f.read()) 151 data = json.loads(f.read())
152 packages[pkgname] = (relpth, data) 152 packages[pkgname] = (relpth, data)
153 # We want the main package for a module sorted *after* its subpackages 153 # We want the main package for a module sorted *after* its subpackages
154 # (so that it doesn't otherwise steal the files for the subpackage), so 154 # (so that it doesn't otherwise steal the files for the subpackage), so
155 # this is a cheap way to do that whilst still having an otherwise 155 # this is a cheap way to do that whilst still having an otherwise