diff options
Diffstat (limited to 'meta/classes-recipe')
-rw-r--r-- | meta/classes-recipe/python_pep517.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes-recipe/python_pep517.bbclass b/meta/classes-recipe/python_pep517.bbclass index 4935b2cbe9..128c943794 100644 --- a/meta/classes-recipe/python_pep517.bbclass +++ b/meta/classes-recipe/python_pep517.bbclass | |||
@@ -39,7 +39,7 @@ python_pep517_do_configure () { | |||
39 | # When we have Python 3.11 we can parse pyproject.toml to determine the build | 39 | # When we have Python 3.11 we can parse pyproject.toml to determine the build |
40 | # API entry point directly | 40 | # API entry point directly |
41 | python_pep517_do_compile () { | 41 | python_pep517_do_compile () { |
42 | nativepython3 -m build --no-isolation --wheel --outdir ${PEP517_WHEEL_PATH} ${PEP517_SOURCE_PATH} ${PEP517_BUILD_OPTS} | 42 | pyproject-build --no-isolation --wheel --outdir ${PEP517_WHEEL_PATH} ${PEP517_SOURCE_PATH} ${PEP517_BUILD_OPTS} |
43 | } | 43 | } |
44 | do_compile[cleandirs] += "${PEP517_WHEEL_PATH}" | 44 | do_compile[cleandirs] += "${PEP517_WHEEL_PATH}" |
45 | 45 | ||