From: Chris Larson Date: Thu, 11 Nov 2010 15:43:48 +0000 (-0700) Subject: Don't ship our own copy of PLY, require it X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3be3b9be62bed55f5c44c654f7ce9d9027845f47;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git Don't ship our own copy of PLY, require it 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 --- diff --git a/setup.py b/setup.py index 7884b948bf3..a8d30ab844b 100755 --- 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/*")),