diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-01-31 12:03:05 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-02-01 13:42:34 +0000 |
commit | c2da016918d1fda5bf63d94b59863f5013e482f9 (patch) | |
tree | 7f1c5dd99c56a405c1ebd86f497461b5c4214752 /meta/classes-recipe/python3native.bbclass | |
parent | c690181cd112ac6eac18c358b970f0ca0c73cd5f (diff) | |
download | poky-c2da016918d1fda5bf63d94b59863f5013e482f9.tar.gz |
meta/meta-selftest: Fix variable assignment whitespace
Recipes are much more readable with whitespace around the assignment operators.
Fix various assignments in OE-Core to show this is definitely the preferred
formatting.
(From OE-Core rev: 30ea609d3357fb3de911f2f6a5e6856c151b976a)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-recipe/python3native.bbclass')
-rw-r--r-- | meta/classes-recipe/python3native.bbclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/classes-recipe/python3native.bbclass b/meta/classes-recipe/python3native.bbclass index 654a002fdb..da1283d6b3 100644 --- a/meta/classes-recipe/python3native.bbclass +++ b/meta/classes-recipe/python3native.bbclass | |||
@@ -6,7 +6,7 @@ | |||
6 | 6 | ||
7 | inherit python3-dir | 7 | inherit python3-dir |
8 | 8 | ||
9 | PYTHON="${STAGING_BINDIR_NATIVE}/python3-native/python3" | 9 | PYTHON = "${STAGING_BINDIR_NATIVE}/python3-native/python3" |
10 | EXTRANATIVEPATH += "python3-native" | 10 | EXTRANATIVEPATH += "python3-native" |
11 | DEPENDS:append = " python3-native " | 11 | DEPENDS:append = " python3-native " |
12 | 12 | ||
@@ -20,8 +20,8 @@ export STAGING_LIBDIR | |||
20 | # find_package(PythonLibs REQUIRED) | 20 | # find_package(PythonLibs REQUIRED) |
21 | # which ends up using libs/includes from build host | 21 | # which ends up using libs/includes from build host |
22 | # Therefore pre-empt that effort | 22 | # Therefore pre-empt that effort |
23 | export PYTHON_LIBRARY="${STAGING_LIBDIR}/lib${PYTHON_DIR}${PYTHON_ABI}.so" | 23 | export PYTHON_LIBRARY = "${STAGING_LIBDIR}/lib${PYTHON_DIR}${PYTHON_ABI}.so" |
24 | export PYTHON_INCLUDE_DIR="${STAGING_INCDIR}/${PYTHON_DIR}${PYTHON_ABI}" | 24 | export PYTHON_INCLUDE_DIR = "${STAGING_INCDIR}/${PYTHON_DIR}${PYTHON_ABI}" |
25 | 25 | ||
26 | # suppress host user's site-packages dirs. | 26 | # suppress host user's site-packages dirs. |
27 | export PYTHONNOUSERSITE = "1" | 27 | export PYTHONNOUSERSITE = "1" |