diff mbox series

[10/11] u-boot-tools.inc: Fix variable assignment whitespace

Message ID ccbeb7201e789d623b5d335c6d2c6956124188a2.1748486276.git.tim.orling@konsulko.com
State New
Headers show
Series [01/11] u-boot: Fix potential index error issues in do_deploy with multiple u-boot configurations | expand

Commit Message

Tim Orling May 29, 2025, 2:41 a.m. UTC
From: Tim Orling <tim.orling@konsulko.com>

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>

Only apply to u-boot-tools.inc

Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
 recipes-bsp/u-boot/u-boot-tools.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/recipes-bsp/u-boot/u-boot-tools.inc b/recipes-bsp/u-boot/u-boot-tools.inc
index 09b3c3f..278360c 100644
--- a/recipes-bsp/u-boot/u-boot-tools.inc
+++ b/recipes-bsp/u-boot/u-boot-tools.inc
@@ -2,7 +2,7 @@  SUMMARY = "U-Boot bootloader tools"
 DEPENDS += "gnutls openssl util-linux swig-native"
 
 inherit python3native
-export STAGING_INCDIR="${STAGING_INCDIR_NATIVE}"
+export STAGING_INCDIR = "${STAGING_INCDIR_NATIVE}"
 
 PROVIDES = "${MLPREFIX}u-boot-mkimage ${MLPREFIX}u-boot-mkenvimage"
 PROVIDES:class-native = "u-boot-mkimage-native u-boot-mkenvimage-native"