[Buildroot] [git commit] package/espeak: don't override dependencies

Peter Korsgaard peter at korsgaard.com
Fri Nov 5 16:19:23 UTC 2021


commit: https://git.buildroot.net/buildroot/commit/?id=70195ea004214d468487b830b041cba772dd0609
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Don't override ESPEAK_DEPENDENCIES in a conditional

Signed-off-by: Fabrice Fontaine <fontaine.fabrice at gmail.com>
Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
---
 package/espeak/espeak.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/espeak/espeak.mk b/package/espeak/espeak.mk
index aa0b5b0716..347fcb607d 100644
--- a/package/espeak/espeak.mk
+++ b/package/espeak/espeak.mk
@@ -13,11 +13,11 @@ ESPEAK_LICENSE_FILES = License.txt
 
 ifeq ($(BR2_PACKAGE_ESPEAK_AUDIO_BACKEND_ALSA),y)
 ESPEAK_AUDIO_BACKEND = portaudio
-ESPEAK_DEPENDENCIES = portaudio
+ESPEAK_DEPENDENCIES += portaudio
 endif
 ifeq ($(BR2_PACKAGE_ESPEAK_AUDIO_BACKEND_PULSEAUDIO),y)
 ESPEAK_AUDIO_BACKEND = pulseaudio
-ESPEAK_DEPENDENCIES = pulseaudio
+ESPEAK_DEPENDENCIES += pulseaudio
 endif
 
 define ESPEAK_EXTRACT_CMDS


More information about the buildroot mailing list