diff mbox series

[meta-oe] xwd: append to DEPENDS instead of overwriting it

Message ID 20260909185835.127339-1-alperyasinak1@gmail.com
State Under Review
Headers show
Series [meta-oe] xwd: append to DEPENDS instead of overwriting it | expand

Commit Message

Alper Ak Sept. 9, 2026, 6:58 p.m. UTC
do_configure fails with:

  configure.ac:35: error: must install xorg-macros 1.8 or later before
  running autoconf/autogen

xorg-app-common.inc sets DEPENDS to "util-macros-native virtual/libx11",
but the recipe overwrites it, so util-macros-native never gets into the
sysroot. Append, like the other xorg-app recipes do.

Signed-off-by: Alper Ak <alperyasinak1@gmail.com>
---
 meta-oe/recipes-graphics/xorg-app/xwd_1.0.10.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/meta-oe/recipes-graphics/xorg-app/xwd_1.0.10.bb b/meta-oe/recipes-graphics/xorg-app/xwd_1.0.10.bb
index 41d3b12be3..430b4ed698 100644
--- a/meta-oe/recipes-graphics/xorg-app/xwd_1.0.10.bb
+++ b/meta-oe/recipes-graphics/xorg-app/xwd_1.0.10.bb
@@ -5,7 +5,7 @@  HOMEPAGE = "http://cgit.freedesktop.org/xorg/app/xwd/"
 SECTION = "x11/app"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=c0cdb783e9a0198237371fdaa26a18bf"
-DEPENDS = "libxmu libxkbfile"
+DEPENDS += "libxmu libxkbfile"
 
 SRC_URI_EXT = "xz"
 SRC_URI[sha256sum] = "4909eacc26c4cd5a9afcd1468aec26e7c646544639031bdad4f71173aa82f3c3"