From: Peter Korsgaard Date: Fri, 25 Jun 2010 10:25:57 +0000 (+0200) Subject: sdl: fix build without directfb after autotools conversion X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bb7593dfdb7f07ca0d282a7dcbae689d26a67a57;p=buildroot.git sdl: fix build without directfb after autotools conversion Make sure --enable-video-directfb=no gets passed to configure if directfb isn't enabled, so sdl doesn't try to link with the host version instead (if available). Signed-off-by: Peter Korsgaard --- diff --git a/package/sdl/sdl.mk b/package/sdl/sdl.mk index 44981ea4d0..87c7533709 100644 --- a/package/sdl/sdl.mk +++ b/package/sdl/sdl.mk @@ -20,7 +20,7 @@ ifeq ($(BR2_PACKAGE_SDL_DIRECTFB),y) SDL_DEPENDENCIES += directfb SDL_CONF_OPT+=--enable-video-directfb=yes else -SDL_DIRECTFB=--enable-video-directfb=no +SDL_CONF_OPT=--enable-video-directfb=no endif ifeq ($(BR2_PACKAGE_SDL_QTOPIA),y)