All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/pulseaudio: replace host-intltool by $(TARGET_NLS_DEPENDENCIES)
@ 2020-01-01 21:14 Fabrice Fontaine
  2020-01-01 22:10 ` Yann E. MORIN
  2020-01-10 13:54 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2020-01-01 21:14 UTC (permalink / raw)
  To: buildroot

intltool has been replaced by gettext since version 12.99.1 and
https://gitlab.freedesktop.org/pulseaudio/pulseaudio/commit/57e3ccaf51f714eec8ca29005c3cc4fde456e84e
so replace host-intltool by $(TARGET_NLS_DEPENDENCIES)

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/pulseaudio/pulseaudio.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/pulseaudio/pulseaudio.mk b/package/pulseaudio/pulseaudio.mk
index 0e78724634..08f548180a 100644
--- a/package/pulseaudio/pulseaudio.mk
+++ b/package/pulseaudio/pulseaudio.mk
@@ -17,7 +17,7 @@ PULSEAUDIO_CONF_OPTS = \
 	--disable-running-from-build-tree
 
 PULSEAUDIO_DEPENDENCIES = \
-	host-pkgconf libtool libsndfile speex host-intltool \
+	host-pkgconf libtool libsndfile speex $(TARGET_NLS_DEPENDENCIES) \
 	$(if $(BR2_PACKAGE_LIBGLIB2),libglib2) \
 	$(if $(BR2_PACKAGE_AVAHI_DAEMON),avahi) \
 	$(if $(BR2_PACKAGE_DBUS),dbus) \
-- 
2.24.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH 1/1] package/pulseaudio: replace host-intltool by $(TARGET_NLS_DEPENDENCIES)
  2020-01-01 21:14 [Buildroot] [PATCH 1/1] package/pulseaudio: replace host-intltool by $(TARGET_NLS_DEPENDENCIES) Fabrice Fontaine
@ 2020-01-01 22:10 ` Yann E. MORIN
  2020-01-10 13:54 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2020-01-01 22:10 UTC (permalink / raw)
  To: buildroot

Fabrice, All,

On 2020-01-01 22:14 +0100, Fabrice Fontaine spake thusly:
> intltool has been replaced by gettext since version 12.99.1 and
> https://gitlab.freedesktop.org/pulseaudio/pulseaudio/commit/57e3ccaf51f714eec8ca29005c3cc4fde456e84e
> so replace host-intltool by $(TARGET_NLS_DEPENDENCIES)
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/pulseaudio/pulseaudio.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/package/pulseaudio/pulseaudio.mk b/package/pulseaudio/pulseaudio.mk
> index 0e78724634..08f548180a 100644
> --- a/package/pulseaudio/pulseaudio.mk
> +++ b/package/pulseaudio/pulseaudio.mk
> @@ -17,7 +17,7 @@ PULSEAUDIO_CONF_OPTS = \
>  	--disable-running-from-build-tree
>  
>  PULSEAUDIO_DEPENDENCIES = \
> -	host-pkgconf libtool libsndfile speex host-intltool \
> +	host-pkgconf libtool libsndfile speex $(TARGET_NLS_DEPENDENCIES) \

I moved $(TARGET_NLS_DEPENDENCIES) to its own line, and applied to
master, thanks.

Regards,
Yann E. MORIN.

>  	$(if $(BR2_PACKAGE_LIBGLIB2),libglib2) \
>  	$(if $(BR2_PACKAGE_AVAHI_DAEMON),avahi) \
>  	$(if $(BR2_PACKAGE_DBUS),dbus) \
> -- 
> 2.24.0
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH 1/1] package/pulseaudio: replace host-intltool by $(TARGET_NLS_DEPENDENCIES)
  2020-01-01 21:14 [Buildroot] [PATCH 1/1] package/pulseaudio: replace host-intltool by $(TARGET_NLS_DEPENDENCIES) Fabrice Fontaine
  2020-01-01 22:10 ` Yann E. MORIN
@ 2020-01-10 13:54 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2020-01-10 13:54 UTC (permalink / raw)
  To: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > intltool has been replaced by gettext since version 12.99.1 and
 > https://gitlab.freedesktop.org/pulseaudio/pulseaudio/commit/57e3ccaf51f714eec8ca29005c3cc4fde456e84e
 > so replace host-intltool by $(TARGET_NLS_DEPENDENCIES)

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2019.11.x, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-01-10 13:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-01 21:14 [Buildroot] [PATCH 1/1] package/pulseaudio: replace host-intltool by $(TARGET_NLS_DEPENDENCIES) Fabrice Fontaine
2020-01-01 22:10 ` Yann E. MORIN
2020-01-10 13:54 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.