]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
Don't ship our own copy of PLY, require it
authorChris Larson <chris_larson@mentor.com>
Thu, 11 Nov 2010 15:43:48 +0000 (08:43 -0700)
committerChris Larson <chris_larson@mentor.com>
Thu, 11 Nov 2010 15:43:48 +0000 (08:43 -0700)
PLY is publically available, so there's no point in shipping ours.  We still
retain a local copy, however, so we don't lose the ability to run bitbake in
place in the source tree.

Signed-off-by: Chris Larson <chris_larson@mentor.com>
setup.py

index 7884b948bf3b9e6db1b39a5644e525f8aef6687e..a8d30ab844b6f871a63e5739c558aff9ee31a6da 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -51,9 +51,10 @@ class Build(build):
 
 setup(name='bitbake',
       version = __version__,
+      requires = ["ply"],
       package_dir = {"": "lib"},
       packages = ["bb.server", "bb.parse.parse_py", "bb.parse", "bb.fetch",
-                  "bb.ui.crumbs", "bb.ui", "bb", "pysh", "ply"],
+                  "bb.ui.crumbs", "bb.ui", "bb", "pysh"],
       py_modules = ["codegen"],
       scripts = ["bin/bitbake"],
       data_files = [("share/bitbake", glob("conf/*") + glob("classes/*")),