mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-06 18:09:44 +03:00
package/pulseaudio: fix build-dependency on gettext
In its Config.in, pulseaudio declares a dependency on gettext
using the documented construct:
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT
but in its .mk file, declares a dependency on the package:
PULSEAUDIO_DEPENDENCIES = [...] $(if $(BR2_PACKAGE_GETTEXT),gettext) [...]
instead of the documented:
$(if $(BR2_NEEDS_GETTEXT),gettext)
Fix that.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
CC: Samuel Martin <s.martin49@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
committed by
Peter Korsgaard
parent
0d5dbb9360
commit
34f3d66529
@@ -16,7 +16,7 @@ PULSEAUDIO_CONF_OPT = \
|
||||
|
||||
PULSEAUDIO_DEPENDENCIES = \
|
||||
host-pkg-config libtool json-c libsndfile speex host-intltool \
|
||||
$(if $(BR2_PACKAGE_GETTEXT),gettext) \
|
||||
$(if $(BR2_NEEDS_GETTEXT),gettext) \
|
||||
$(if $(BR2_PACKAGE_LIBATOMIC_OPS),libatomic_ops) \
|
||||
$(if $(BR2_PACKAGE_LIBSAMPLERATE),libsamplerate) \
|
||||
$(if $(BR2_PACKAGE_ALSA_LIB),alsa-lib) \
|
||||
|
||||
Reference in New Issue
Block a user