]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
ltris: correct audio configure options
authorPeter Korsgaard <peter@korsgaard.com>
Tue, 31 May 2016 07:45:52 +0000 (09:45 +0200)
committerPeter Korsgaard <peter@korsgaard.com>
Tue, 31 May 2016 07:45:52 +0000 (09:45 +0200)
Fixes:
http://autobuild.buildroot.net/results/555/555bfc97b39eb9b0f1e516ffb7ae375ca2c43d5f/

The configure options to enable/disable sound through sdl_mixer are called
--enable/--disable-sound, not --enable/--disable-audio.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/ltris/ltris.mk

index 530e11e06b89c840e4bc790aedf68cb31e30de01..bbd270ea133dbc847a53eb1850d95327981f611c 100644 (file)
@@ -17,12 +17,12 @@ LTRIS_CONF_ENV = \
 
 ifeq ($(BR2_PACKAGE_LTRIS_AUDIO),y)
 LTRIS_DEPENDENCIES += sdl_mixer host-pkgconf
-LTRIS_CONF_OPTS += --enable-audio=yes
+LTRIS_CONF_OPTS += --enable-sound
 # configure script does NOT use pkg-config to figure out how to link
 # with sdl_mixer, breaking static linking as sdl_mixer can use libmad
 LTRIS_LIBS += `$(PKG_CONFIG_HOST_BINARY) --libs SDL_mixer`
 else
-LTRIS_CONF_OPTS += --disable-audio
+LTRIS_CONF_OPTS += --disable-sound
 endif
 
 ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y)