summaryrefslogtreecommitdiffstats
path: root/package/ltris
diff options
context:
space:
mode:
authorPeter Korsgaard <peter@korsgaard.com>2016-05-31 09:45:52 +0200
committerPeter Korsgaard <peter@korsgaard.com>2016-05-31 09:45:52 +0200
commit306878fa0291bc52ac5a835fb29670f50cbe868c (patch)
treed6002a4c2d15211e71294771661d584b900e4ebd /package/ltris
parenta229c52aa4c75f1008d629c91e61cf5f0a1c0569 (diff)
downloadbuildroot-306878fa0291bc52ac5a835fb29670f50cbe868c.tar.gz
buildroot-306878fa0291bc52ac5a835fb29670f50cbe868c.zip
ltris: correct audio configure options
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>
Diffstat (limited to 'package/ltris')
-rw-r--r--package/ltris/ltris.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/ltris/ltris.mk b/package/ltris/ltris.mk
index 530e11e06b..bbd270ea13 100644
--- a/package/ltris/ltris.mk
+++ b/package/ltris/ltris.mk
@@ -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)
OpenPOWER on IntegriCloud