summaryrefslogtreecommitdiffstats
path: root/meta/classes-recipe/setuptools3_legacy.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2025-01-31 12:03:05 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-02-01 13:42:34 +0000
commitc2da016918d1fda5bf63d94b59863f5013e482f9 (patch)
tree7f1c5dd99c56a405c1ebd86f497461b5c4214752 /meta/classes-recipe/setuptools3_legacy.bbclass
parentc690181cd112ac6eac18c358b970f0ca0c73cd5f (diff)
downloadpoky-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/setuptools3_legacy.bbclass')
-rw-r--r--meta/classes-recipe/setuptools3_legacy.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes-recipe/setuptools3_legacy.bbclass b/meta/classes-recipe/setuptools3_legacy.bbclass
index 264b1f5cfb..030c3d9e0e 100644
--- a/meta/classes-recipe/setuptools3_legacy.bbclass
+++ b/meta/classes-recipe/setuptools3_legacy.bbclass
@@ -79,6 +79,6 @@ setuptools3_legacy_do_install[vardepsexclude] = "MACHINE"
79 79
80EXPORT_FUNCTIONS do_configure do_compile do_install 80EXPORT_FUNCTIONS do_configure do_compile do_install
81 81
82export LDSHARED="${CCLD} -shared" 82export LDSHARED = "${CCLD} -shared"
83DEPENDS += "python3-setuptools-native" 83DEPENDS += "python3-setuptools-native"
84 84