summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/make-mod-scripts
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/recipes-kernel/make-mod-scripts
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/recipes-kernel/make-mod-scripts')
-rw-r--r--meta/recipes-kernel/make-mod-scripts/make-mod-scripts_1.0.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-kernel/make-mod-scripts/make-mod-scripts_1.0.bb b/meta/recipes-kernel/make-mod-scripts/make-mod-scripts_1.0.bb
index 581e90e9b4..1a20472994 100644
--- a/meta/recipes-kernel/make-mod-scripts/make-mod-scripts_1.0.bb
+++ b/meta/recipes-kernel/make-mod-scripts/make-mod-scripts_1.0.bb
@@ -23,7 +23,7 @@ EXTRA_OEMAKE = " HOSTCC="${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_LDFLAGS}" HOSTCPP="
23EXTRA_OEMAKE += " HOSTCXX="${BUILD_CXX} ${BUILD_CXXFLAGS} ${BUILD_LDFLAGS}" CROSS_COMPILE=${TARGET_PREFIX}" 23EXTRA_OEMAKE += " HOSTCXX="${BUILD_CXX} ${BUILD_CXXFLAGS} ${BUILD_LDFLAGS}" CROSS_COMPILE=${TARGET_PREFIX}"
24 24
25KERNEL_LOCALVERSION = "${@get_kernellocalversion_file("${STAGING_KERNEL_BUILDDIR}")}" 25KERNEL_LOCALVERSION = "${@get_kernellocalversion_file("${STAGING_KERNEL_BUILDDIR}")}"
26export LOCALVERSION="${KERNEL_LOCALVERSION}" 26export LOCALVERSION = "${KERNEL_LOCALVERSION}"
27 27
28# Build some host tools under work-shared. CC, LD, and AR are probably 28# Build some host tools under work-shared. CC, LD, and AR are probably
29# not used, but this is the historical way of invoking "make scripts". 29# not used, but this is the historical way of invoking "make scripts".