diff options
Diffstat (limited to 'package/sdl_gfx/sdl_gfx.mk')
-rw-r--r-- | package/sdl_gfx/sdl_gfx.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/sdl_gfx/sdl_gfx.mk b/package/sdl_gfx/sdl_gfx.mk index 0188a3a4fa..7f3a2ffec8 100644 --- a/package/sdl_gfx/sdl_gfx.mk +++ b/package/sdl_gfx/sdl_gfx.mk @@ -12,7 +12,7 @@ SDL_GFX_LICENSE = zlib SDL_GFX_LICENSE_FILES = COPYING LICENSE SDL_GFX_INSTALL_STAGING = YES SDL_GFX_DEPENDENCIES = sdl -SDL_GFX_CONF_OPT = \ +SDL_GFX_CONF_OPTS = \ --with-sdl-prefix=$(STAGING_DIR)/usr \ --disable-sdltest \ --enable-static @@ -20,9 +20,9 @@ SDL_GFX_CONF_OPT = \ # Even though x86_64 processors support MMX, the MMX-specific assembly # code in sdl_gfx is IA32 specific, and does not build for x86_64. ifeq ($(BR2_i386)$(BR2_X86_CPU_HAS_MMX),yy) -SDL_GFX_CONF_OPT += --enable-mmx +SDL_GFX_CONF_OPTS += --enable-mmx else -SDL_GFX_CONF_OPT += --disable-mmx +SDL_GFX_CONF_OPTS += --disable-mmx endif $(eval $(autotools-package)) |