All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/connman-gtk: fix build with NLS
@ 2019-07-17 17:02 Fabrice Fontaine
  2019-07-17 17:02 ` [Buildroot] [PATCH 2/2] package/connman-gtk: add hash for license file Fabrice Fontaine
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Fabrice Fontaine @ 2019-07-17 17:02 UTC (permalink / raw)
  To: buildroot

Fixes:
 - http://autobuild.buildroot.org/results/30b775323b4780b35a163100097952eff232339e

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/connman-gtk/connman-gtk.mk | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/package/connman-gtk/connman-gtk.mk b/package/connman-gtk/connman-gtk.mk
index 9888fcd4a4..0ea49198e6 100644
--- a/package/connman-gtk/connman-gtk.mk
+++ b/package/connman-gtk/connman-gtk.mk
@@ -8,8 +8,10 @@ CONNMAN_GTK_VERSION = 1.1.1
 CONNMAN_GTK_SITE = https://github.com/jgke/connman-gtk/releases/download/v$(CONNMAN_GTK_VERSION)
 CONNMAN_GTK_SOURCE = connman-gtk-$(CONNMAN_GTK_VERSION).tar.bz2
 CONNMAN_GTK_INSTALL_STAGING = YES
-CONNMAN_GTK_DEPENDENCIES = host-intltool connman libglib2 libgtk3
+CONNMAN_GTK_DEPENDENCIES = host-intltool connman libglib2 libgtk3 \
+	$(TARGET_NLS_DEPENDENCIES)
 CONNMAN_GTK_LICENSE = GPL-2.0+
 CONNMAN_GTK_LICENSE_FILES = COPYING
+CONNMAN_GTK_CONF_ENV = LIBS=$(TARGET_NLS_LIBS)
 
 $(eval $(autotools-package))
-- 
2.20.1

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

* [Buildroot] [PATCH 2/2] package/connman-gtk: add hash for license file
  2019-07-17 17:02 [Buildroot] [PATCH 1/2] package/connman-gtk: fix build with NLS Fabrice Fontaine
@ 2019-07-17 17:02 ` Fabrice Fontaine
  2019-08-04 20:12   ` Peter Korsgaard
  2019-07-18 18:59 ` [Buildroot] [PATCH 1/2] package/connman-gtk: fix build with NLS Thomas Petazzoni
  2019-08-04 20:12 ` Peter Korsgaard
  2 siblings, 1 reply; 5+ messages in thread
From: Fabrice Fontaine @ 2019-07-17 17:02 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/connman-gtk/connman-gtk.hash | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/connman-gtk/connman-gtk.hash b/package/connman-gtk/connman-gtk.hash
index d71e77d2c1..fbc4acb14c 100644
--- a/package/connman-gtk/connman-gtk.hash
+++ b/package/connman-gtk/connman-gtk.hash
@@ -1,2 +1,3 @@
 # Locally calculated
 sha256	49bdc4769a7c508b0130e4705eef21aec9df1ea4f5c29fee48a0cae8db828fca	connman-gtk-1.1.1.tar.bz2
+sha256	8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643	COPYING
-- 
2.20.1

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

* [Buildroot] [PATCH 1/2] package/connman-gtk: fix build with NLS
  2019-07-17 17:02 [Buildroot] [PATCH 1/2] package/connman-gtk: fix build with NLS Fabrice Fontaine
  2019-07-17 17:02 ` [Buildroot] [PATCH 2/2] package/connman-gtk: add hash for license file Fabrice Fontaine
@ 2019-07-18 18:59 ` Thomas Petazzoni
  2019-08-04 20:12 ` Peter Korsgaard
  2 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2019-07-18 18:59 UTC (permalink / raw)
  To: buildroot

On Wed, 17 Jul 2019 19:02:50 +0200
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> Fixes:
>  - http://autobuild.buildroot.org/results/30b775323b4780b35a163100097952eff232339e
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/connman-gtk/connman-gtk.mk | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)

Both applied to master. Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH 1/2] package/connman-gtk: fix build with NLS
  2019-07-17 17:02 [Buildroot] [PATCH 1/2] package/connman-gtk: fix build with NLS Fabrice Fontaine
  2019-07-17 17:02 ` [Buildroot] [PATCH 2/2] package/connman-gtk: add hash for license file Fabrice Fontaine
  2019-07-18 18:59 ` [Buildroot] [PATCH 1/2] package/connman-gtk: fix build with NLS Thomas Petazzoni
@ 2019-08-04 20:12 ` Peter Korsgaard
  2 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2019-08-04 20:12 UTC (permalink / raw)
  To: buildroot

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

 > Fixes:
 >  - http://autobuild.buildroot.org/results/30b775323b4780b35a163100097952eff232339e

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

Committed to 2019.02.x and 2019.05.x, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/2] package/connman-gtk: add hash for license file
  2019-07-17 17:02 ` [Buildroot] [PATCH 2/2] package/connman-gtk: add hash for license file Fabrice Fontaine
@ 2019-08-04 20:12   ` Peter Korsgaard
  0 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2019-08-04 20:12 UTC (permalink / raw)
  To: buildroot

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

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

Committed to 2019.02.x and 2019.05.x, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2019-08-04 20:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-17 17:02 [Buildroot] [PATCH 1/2] package/connman-gtk: fix build with NLS Fabrice Fontaine
2019-07-17 17:02 ` [Buildroot] [PATCH 2/2] package/connman-gtk: add hash for license file Fabrice Fontaine
2019-08-04 20:12   ` Peter Korsgaard
2019-07-18 18:59 ` [Buildroot] [PATCH 1/2] package/connman-gtk: fix build with NLS Thomas Petazzoni
2019-08-04 20:12 ` 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.