From: Gustavo Zacarias Date: Mon, 31 Jan 2011 19:40:25 +0000 (-0300) Subject: fbset: ensure it builds after busybox if both are enabled X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2e77770e615819b8ec969e4e39160d4185f89d0c;p=buildroot.git fbset: ensure it builds after busybox if both are enabled Signed-off-by: Gustavo Zacarias Signed-off-by: Peter Korsgaard --- diff --git a/package/fbset/fbset.mk b/package/fbset/fbset.mk index 8926f4c472..b5b5ab8090 100644 --- a/package/fbset/fbset.mk +++ b/package/fbset/fbset.mk @@ -3,10 +3,16 @@ # fbset # ############################################################# + FBSET_VERSION = 2.1 FBSET_SOURCE = fbset-$(FBSET_VERSION).tar.gz FBSET_SITE = http://users.telenet.be/geertu/Linux/fbdev +# Make sure full fbset wins over busybox fbset +ifeq ($(BR2_PACKAGE_BUSYBOX),y) +FBSET_DEPENDENCIES += busybox +endif + define FBSET_BUILD_CMDS $(MAKE1) $(TARGET_CONFIGURE_OPTS) -C $(@D) endef