summaryrefslogtreecommitdiffstats
path: root/package/sdl
diff options
context:
space:
mode:
authorPeter Korsgaard2010-06-25 12:25:57 +0200
committerPeter Korsgaard2010-06-25 12:25:57 +0200
commitbb7593dfdb7f07ca0d282a7dcbae689d26a67a57 (patch)
treeb7a5f284786e63fbb4697153e47137cca2914810 /package/sdl
parentMerge branch 'autotools-conversion' of git://git.busybox.net/~tpetazzoni/git/... (diff)
downloadbuildroot-bb7593dfdb7f07ca0d282a7dcbae689d26a67a57.tar.gz
buildroot-bb7593dfdb7f07ca0d282a7dcbae689d26a67a57.tar.xz
buildroot-bb7593dfdb7f07ca0d282a7dcbae689d26a67a57.zip
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 <jacmet@sunsite.dk>
Diffstat (limited to 'package/sdl')
-rw-r--r--package/sdl/sdl.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/sdl/sdl.mk b/package/sdl/sdl.mk
index 44981ea4d..87c753370 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)