diff options
author | 2019-07-26 13:36:11 +0800 | |
---|---|---|
committer | 2019-07-31 22:16:13 -0400 | |
commit | 0f93dfe2f000b42eb0b960d90e2614a0e8a39201 (patch) | |
tree | 7fd92ece0fcdc3e2ec82ce0dbe94984bceb87907 /recipes-devtools | |
parent | 6d0ce39466b04b179ea00ba8a304c62c2f15cb12 (diff) | |
download | meta-cloud-services-0f93dfe2f000b42eb0b960d90e2614a0e8a39201.tar.gz meta-cloud-services-0f93dfe2f000b42eb0b960d90e2614a0e8a39201.tar.bz2 meta-cloud-services-0f93dfe2f000b42eb0b960d90e2614a0e8a39201.zip |
python-dateutil: Remove the bbappend
The current bbappend only has below logic:
CLEANBROKEN = "1"
For python-dateutil, the distutils class is about to
do a clean via "setup.py clean" as below logic in distutils
class without CLEANBROKE = "1":
distutils_do_configure() {
if [ "${CLEANBROKEN}" != "1" ] ; then
NO_FETCH_BUILD=1 \
${STAGING_BINDIR_NATIVE}/${PYTHON_PN}-native/${PYTHON_PN} setup.py clean ${DISTUTILS_BUILD_ARGS}
fi
}
But it works for python-dateutil, no need to set
CLEANBROKEN, so remove this bbappend.
Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'recipes-devtools')
-rw-r--r-- | recipes-devtools/python/python-dateutil_%.bbappend | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/recipes-devtools/python/python-dateutil_%.bbappend b/recipes-devtools/python/python-dateutil_%.bbappend deleted file mode 100644 index 68409e5d..00000000 --- a/recipes-devtools/python/python-dateutil_%.bbappend +++ /dev/null @@ -1 +0,0 @@ -CLEANBROKEN = "1" |