diff options
| author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2015-02-24 12:16:11 -0500 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2015-02-24 12:16:11 -0500 |
| commit | 0431c45c2e0d61479eca447551f1631476b469a9 (patch) | |
| tree | e5ab6181a384777097f7429098b99bcc4cbd0925 /meta-openstack/recipes-devtools/python/python-werkzeug_0.9.4.bb | |
| parent | 806abca4a5f914e5e02cbd42f9ee967d493559a6 (diff) | |
| download | meta-cloud-services-0431c45c2e0d61479eca447551f1631476b469a9.tar.gz | |
support-libs: fix clean issues
With recent changes to oe-core make clean is run during the
configuration phase of python packages.
For some packages, this causes breakage as 'make clean' is not
supported.
To keep the build going, we mark them as brokenclean to avoid
the issue.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-werkzeug_0.9.4.bb')
| -rw-r--r-- | meta-openstack/recipes-devtools/python/python-werkzeug_0.9.4.bb | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-werkzeug_0.9.4.bb b/meta-openstack/recipes-devtools/python/python-werkzeug_0.9.4.bb index 2d160b9..38e9f0f 100644 --- a/meta-openstack/recipes-devtools/python/python-werkzeug_0.9.4.bb +++ b/meta-openstack/recipes-devtools/python/python-werkzeug_0.9.4.bb | |||
| @@ -16,5 +16,16 @@ S = "${WORKDIR}/${SRCNAME}-${PV}" | |||
| 16 | 16 | ||
| 17 | inherit setuptools | 17 | inherit setuptools |
| 18 | 18 | ||
| 19 | RDEPENDS_${PN} += "python-io python-datetime python-email python-zlib python-pkgutil python-html python-shell python-pprint python-subprocess python-netserver" | 19 | RDEPENDS_${PN} += "python-io \ |
| 20 | python-datetime \ | ||
| 21 | python-email \ | ||
| 22 | python-zlib \ | ||
| 23 | python-pkgutil \ | ||
| 24 | python-html \ | ||
| 25 | python-shell \ | ||
| 26 | python-pprint \ | ||
| 27 | python-subprocess \ | ||
| 28 | python-netserver" | ||
| 29 | |||
| 30 | CLEANBROKEN = "1" | ||
| 20 | 31 | ||
