diff options
author | Romain Naour <romain.naour@gmail.com> | 2018-03-15 23:50:11 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2018-03-17 09:55:17 +0100 |
commit | 47c7a8c2b3f20b76b4a8937d31419f40ed6a60df (patch) | |
tree | f6a305df9a72f1f5ebd98cd3a7f0a1be4ecbb6e1 | |
parent | 438041c365fceef7d598f97c27ef94716e146af4 (diff) | |
download | buildroot-47c7a8c2b3f20b76b4a8937d31419f40ed6a60df.tar.gz buildroot-47c7a8c2b3f20b76b4a8937d31419f40ed6a60df.zip |
package/enlightenment: add xkeyboard-config optional dependency
The meson build systemd is checking for xkeyboard-config optional
dependency but there is no option to handle it.
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/enlightenment/enlightenment.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/enlightenment/enlightenment.mk b/package/enlightenment/enlightenment.mk index 6ee983db76..ae68888aac 100644 --- a/package/enlightenment/enlightenment.mk +++ b/package/enlightenment/enlightenment.mk @@ -41,6 +41,10 @@ else ENLIGHTENMENT_MESON_OPTS += -Dmixer=false endif +ifeq ($(BR2_PACKAGE_XKEYBOARD_CONFIG),y) +ENLIGHTENMENT_DEPENDENCIES += xkeyboard-config +endif + define ENLIGHTENMENT_CONFIGURE_CMDS rm -rf $(@D)/build mkdir -p $(@D)/build |