summaryrefslogtreecommitdiffstats
path: root/meta/classes/flit_core.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/flit_core.bbclass')
-rw-r--r--meta/classes/flit_core.bbclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/classes/flit_core.bbclass b/meta/classes/flit_core.bbclass
index ce162bb75b..1ef8ce9429 100644
--- a/meta/classes/flit_core.bbclass
+++ b/meta/classes/flit_core.bbclass
@@ -1,4 +1,4 @@
1inherit pip_install_wheel python3native python3-dir setuptools3-base 1inherit python_pep517 python3native python3-dir setuptools3-base
2 2
3DEPENDS += "python3 python3-flit-core-native" 3DEPENDS += "python3 python3-flit-core-native"
4 4
@@ -12,8 +12,8 @@ PEP517_SOURCE_PATH ?= "${S}"
12# TODO: ideally this uses pypa/build 12# TODO: ideally this uses pypa/build
13flit_core_do_compile () { 13flit_core_do_compile () {
14 cd ${PEP517_SOURCE_PATH} 14 cd ${PEP517_SOURCE_PATH}
15 nativepython3 -mflit_core.wheel --outdir ${PIP_INSTALL_DIST_PATH} 15 nativepython3 -mflit_core.wheel --outdir ${PEP517_WHEEL_PATH}
16} 16}
17do_compile[cleandirs] += "${PIP_INSTALL_DIST_PATH}" 17do_compile[cleandirs] += "${PEP517_WHEEL_PATH}"
18 18
19EXPORT_FUNCTIONS do_configure do_compile 19EXPORT_FUNCTIONS do_configure do_compile