diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2006-10-04 09:48:50 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2006-10-04 09:48:50 +0000 |
commit | 2c66cf2e9d662ba8941dd11741f8e825a6f475c1 (patch) | |
tree | 5699eafff92aa30aa447783c6ab66ecba45f7013 /contrib | |
parent | 7cda59cb5b6d78f4d41cf233f9a7f48109042a2e (diff) |
python: fixed manifest to NOT rdepend on libraries - shlibs code will do it in correct way
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/python/generate-manifest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/python/generate-manifest.py b/contrib/python/generate-manifest.py index 2fd681dc01..0c0aea27c1 100755 --- a/contrib/python/generate-manifest.py +++ b/contrib/python/generate-manifest.py @@ -226,7 +226,7 @@ if __name__ == "__main__": m.addPackage( 0, "python-html", "Python HTML Processing", "python-core", "formatter.* htmlentitydefs.* htmllib.* markupbase.* sgmllib.* " ) - m.addPackage( 0, "python-gdbm", "Python GNU Database Support", "python-core, libgdbm3", + m.addPackage( 0, "python-gdbm", "Python GNU Database Support", "python-core", "lib-dynload/gdbm.so" ) m.addPackage( 0, "python-image", "Python Graphical Image Handling", "python-core", @@ -281,7 +281,7 @@ if __name__ == "__main__": m.addPackage( 0, "python-re", "Python Regular Expression APIs", "python-core", "re.* sre.* sre_compile.* sre_constants* sre_parse.*" ) # _sre is builtin - m.addPackage( 0, "python-readline", "Python Readline Support", "python-core, libreadline4", + m.addPackage( 0, "python-readline", "Python Readline Support", "python-core", "lib-dynload/readline.so rlcompleter.*" ) m.addPackage( 0, "python-resource", "Python Resource Control Interface", "python-core", |