summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2021-08-13 11:17:38 -0400
committerAndrei Gherzan <andrei@gherzan.com>2021-08-19 11:01:49 +0300
commitfcd7b67d9c00eb77787d470b6a7ea972736f1446 (patch)
tree886daab3113cf53a2f79731d02845d4296c18470
parent32921fc9bd59a93c7bda20594cca6c33a64927f7 (diff)
downloadmeta-raspberrypi-fcd7b67d9c00eb77787d470b6a7ea972736f1446.tar.gz
xserver-xf86-config: Correctly append to FILES:${PN}
When updating FILES:${PN} based on an override you must use FILES:${PN}:append:OVERRIDE as the syntax otherwise you will end up replacing the contents of FILES:${PN} entirely. Update to use this syntax correctly and then only add "${sysconfdir}/X11/xorg.conf.d/*" Reported-by: Quentin Schulz <quentin.schulz@theobroma-systems.com> Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r--recipes-graphics/xorg-xserver/xserver-xf86-config_%.bbappend2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-graphics/xorg-xserver/xserver-xf86-config_%.bbappend b/recipes-graphics/xorg-xserver/xserver-xf86-config_%.bbappend
index da3cd8a..dfcd072 100644
--- a/recipes-graphics/xorg-xserver/xserver-xf86-config_%.bbappend
+++ b/recipes-graphics/xorg-xserver/xserver-xf86-config_%.bbappend
@@ -13,4 +13,4 @@ do_install:append:rpi () {
13 fi 13 fi
14} 14}
15 15
16FILES:${PN}:rpi += "${sysconfdir}/X11/xorg.conf ${sysconfdir}/X11/xorg.conf.d/*" 16FILES:${PN}:append:rpi = " ${sysconfdir}/X11/xorg.conf.d/*"