mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-04 06:10:16 +03:00
alsa-lib: fix static linking check
Closes #5732 The symbol for static linking is BR2_PREFER_STATIC_LIB. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
@@ -17,7 +17,7 @@ ALSA_LIB_CONF_OPT = --with-alsa-devdir=$(call qstrip,$(BR2_PACKAGE_ALSA_LIB_DEVD
|
||||
--without-versioned
|
||||
|
||||
# Can't build with static & shared at the same time (1.0.25+)
|
||||
ifeq ($(BR2_PREFER_STATIC),y)
|
||||
ifeq ($(BR2_PREFER_STATIC_LIB),y)
|
||||
ALSA_LIB_CONF_OPT += --enable-shared=no
|
||||
else
|
||||
ALSA_LIB_CONF_OPT += --enable-static=no
|
||||
|
||||
Reference in New Issue
Block a user