diff mbox series

[meta-arago,scarthgap] emptty: use of append in build flags

Message ID 20250321014205.3480034-1-rs@ti.com
State Accepted
Delegated to: Ryan Eatmon
Headers show
Series [meta-arago,scarthgap] emptty: use of append in build flags | expand

Commit Message

Randolph Sapp March 21, 2025, 1:42 a.m. UTC
From: Randolph Sapp <rs@ti.com>

The use of append with GOBUILDFLAGS is mandatory. There is no reasonable
extra buildflags variable to use in this case, and using += will break
argument ordering.

Fixes: 67d7748a (emptty: address feedback around append usage, 2025-03-19)
Signed-off-by: Randolph Sapp <rs@ti.com>
---
 meta-arago-distro/recipes-graphics/emptty/emptty_0.13.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/meta-arago-distro/recipes-graphics/emptty/emptty_0.13.0.bb b/meta-arago-distro/recipes-graphics/emptty/emptty_0.13.0.bb
index ce84898c..412ad729 100644
--- a/meta-arago-distro/recipes-graphics/emptty/emptty_0.13.0.bb
+++ b/meta-arago-distro/recipes-graphics/emptty/emptty_0.13.0.bb
@@ -28,7 +28,7 @@  GO_TAGS = ""
 GO_TAGS:append = "${@bb.utils.contains('PACKAGECONFIG', 'pam', '', ',nopam', d)}"
 GO_TAGS:append = "${@bb.utils.contains('PACKAGECONFIG', 'x11', '', ',noxlib', d)}"
 
-GOBUILDFLAGS += "-tags=${GO_TAGS}"
+GOBUILDFLAGS:append = " -tags=${GO_TAGS}"
 
 export GO111MODULE="off"