From e9455606c968ad92a48c9cc010512c28d8119e41 Mon Sep 17 00:00:00 2001 From: Hongxu Jia Date: Fri, 27 Jul 2018 00:04:55 +0800 Subject: clean up var-DISTUTILS_INSTALL_ARGS Since the following commit applied in oe-core ... 21f0c5a distutils/setuptools, distutils3/setuptools3: improve reproducibility ... It unified var-DISTUTILS_INSTALL_ARGS in distutils and setuptools, so clean up the duplicated var-DISTUTILS_INSTALL_ARGS in each recipe. Signed-off-by: Hongxu Jia Signed-off-by: Khem Raj --- meta-python/recipes-connectivity/gateone/gateone_git.bb | 4 +--- meta-python/recipes-devtools/python/python3-langtable_0.0.38.bb | 4 ++-- 2 files changed, 3 insertions(+), 5 deletions(-) (limited to 'meta-python') diff --git a/meta-python/recipes-connectivity/gateone/gateone_git.bb b/meta-python/recipes-connectivity/gateone/gateone_git.bb index 4577873ded..5d2ca00ef5 100644 --- a/meta-python/recipes-connectivity/gateone/gateone_git.bb +++ b/meta-python/recipes-connectivity/gateone/gateone_git.bb @@ -16,9 +16,7 @@ S = "${WORKDIR}/git" inherit setuptools python-dir systemd update-rc.d -DISTUTILS_INSTALL_ARGS = "--root=${D} \ - --prefix=${prefix} \ - --install-lib=${PYTHON_SITEPACKAGES_DIR} \ +DISTUTILS_INSTALL_ARGS += " \ --install-data=${PYTHON_SITEPACKAGES_DIR} \ --install-scripts=${bindir} \ --skip_init_scripts" diff --git a/meta-python/recipes-devtools/python/python3-langtable_0.0.38.bb b/meta-python/recipes-devtools/python/python3-langtable_0.0.38.bb index 0ca58c7b73..eb42fe978c 100644 --- a/meta-python/recipes-devtools/python/python3-langtable_0.0.38.bb +++ b/meta-python/recipes-devtools/python/python3-langtable_0.0.38.bb @@ -16,8 +16,8 @@ SRC_URI = "git://github.com/mike-fabian/langtable.git;branch=master \ inherit setuptools3 python3native -DISTUTILS_INSTALL_ARGS = "--prefix=${D}/${prefix} \ - --install-data=${D}/${datadir}/langtable" +DISTUTILS_INSTALL_ARGS += " \ + --install-data=${datadir}/langtable" FILES_${PN} += "${datadir}/*" -- cgit 1.2.3-korg