diff options
author | Ming Liu <peter.x.liu@external.atlascopco.com> | 2017-02-26 09:05:11 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-01 23:27:10 +0000 |
commit | 5230e490f8fe7108d8c07899852bf3d66a1a12a3 (patch) | |
tree | 91e00c054feae845a37af438d4c8fa315f456f14 /scripts/contrib/python/generate-manifest-2.7.py | |
parent | 2f821f3c094927572fa599e3a07931b97073642e (diff) | |
download | poky-5230e490f8fe7108d8c07899852bf3d66a1a12a3.tar.gz |
generate-manifest-2.7.py: fix python-tests rdepends
A potential flaw was introduced by commit a8dc4bc0:
[ python: fix python-tests rdepends ]
It made python-tests RDEPENDS on python-modules which is correct, but
this should be done in generate-manifest-2.7.py, and re-generate the
manifest.
Fixed by adding this dependency in generate-manifest-2.7.py as well.
(From OE-Core rev: 13adc5bbfd2ef64133a086ec6c917ac3ef274087)
Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/contrib/python/generate-manifest-2.7.py')
-rwxr-xr-x | scripts/contrib/python/generate-manifest-2.7.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/contrib/python/generate-manifest-2.7.py b/scripts/contrib/python/generate-manifest-2.7.py index 6f7a4c39e0..b5941a035f 100755 --- a/scripts/contrib/python/generate-manifest-2.7.py +++ b/scripts/contrib/python/generate-manifest-2.7.py | |||
@@ -383,7 +383,7 @@ if __name__ == "__main__": | |||
383 | m.addPackage( "${PN}-terminal", "Python terminal controlling support", "${PN}-core ${PN}-io", | 383 | m.addPackage( "${PN}-terminal", "Python terminal controlling support", "${PN}-core ${PN}-io", |
384 | "pty.* tty.*" ) | 384 | "pty.* tty.*" ) |
385 | 385 | ||
386 | m.addPackage( "${PN}-tests", "Python tests", "${PN}-core", | 386 | m.addPackage( "${PN}-tests", "Python tests", "${PN}-core ${PN}-modules", |
387 | "test" ) # package | 387 | "test" ) # package |
388 | 388 | ||
389 | m.addPackage( "${PN}-threading", "Python threading & synchronization support", "${PN}-core ${PN}-lang", | 389 | m.addPackage( "${PN}-threading", "Python threading & synchronization support", "${PN}-core ${PN}-lang", |