recipes: Fix variable assignment whitespace

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Richard Purdie
2025-03-19 13:07:48 -07:00
committed by Khem Raj
parent 42727bb3c0
commit eac1f5b9c0
86 changed files with 96 additions and 96 deletions

View File

@@ -63,7 +63,7 @@ do_install () {
install -m 0755 $script ${D}${bindir}/${script_basename}
done
}
RDEPENDS:${PN} +="bash"
RDEPENDS:${PN} += "bash"
# http://errors.yoctoproject.org/Errors/Details/186956/
COMPATIBLE_HOST:libc-musl = 'null'

View File

@@ -24,8 +24,8 @@ B = "${S}/src/${GO_IMPORT}/bin"
GO_EXTRA_LDFLAGS += ' -X ${GO_IMPORT}/prog.GitRevision=${SRCREV}'
export GOHOSTFLAGS="${GO_LINKSHARED} ${GOBUILDFLAGS}"
export GOTARGETFLAGS="${GO_LINKSHARED} ${GOBUILDFLAGS}"
export GOHOSTFLAGS = "${GO_LINKSHARED} ${GOBUILDFLAGS}"
export GOTARGETFLAGS = "${GO_LINKSHARED} ${GOBUILDFLAGS}"
export TARGETOS = '${GOOS}'
export TARGETARCH = '${GOARCH}'
export TARGETVMARCH = '${GOARCH}'